You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
606 B
26 lines
606 B
{
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"target": "es2017",
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"typeRoots": ["./vendor-types"],
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./spec/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.stories.*"
|
|
]
|
|
} |