35 lines
790 B
JSON
35 lines
790 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "output/",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"],
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"importHelpers": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceRoot": "src",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"typeRoots": ["./node_modules/@types", "./types"],
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest"
|
|
],
|
|
"types": ["typePatches"]
|
|
}
|