2019-04-30 11:11:25 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "output/",
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"rootDir": "src",
|
|
|
|
"importHelpers": 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,
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./types"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"build",
|
|
|
|
"scripts",
|
|
|
|
"acceptance-tests",
|
|
|
|
"webpack",
|
|
|
|
"jest"
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"typePatches"
|
|
|
|
]
|
|
|
|
}
|