2019-04-30 11:11:25 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "output/",
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
2020-05-27 19:31:50 +08:00
|
|
|
"lib": ["es6", "dom"],
|
2019-04-30 11:11:25 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"rootDir": "src",
|
|
|
|
"importHelpers": true,
|
2019-06-11 14:58:28 +08:00
|
|
|
"esModuleInterop": true,
|
2019-06-10 22:53:21 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-04-30 11:11:25 +08:00
|
|
|
"sourceRoot": "src",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2020-05-27 19:31:50 +08:00
|
|
|
"typeRoots": ["./node_modules/@types", "./types"],
|
|
|
|
"skipLibCheck": true
|
2019-04-30 11:11:25 +08:00
|
|
|
},
|
2020-05-27 19:31:50 +08:00
|
|
|
"include": ["src/**/*"],
|
2019-04-30 11:11:25 +08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"build",
|
|
|
|
"scripts",
|
|
|
|
"acceptance-tests",
|
|
|
|
"webpack",
|
|
|
|
"jest"
|
|
|
|
],
|
2020-05-27 19:31:50 +08:00
|
|
|
"types": ["typePatches"]
|
|
|
|
}
|