2017-12-18 08:03:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"baseUrl": "src/ts",
|
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
2017-12-18 10:18:04 +00:00
|
|
|
"es6",
|
|
|
|
"es7"
|
2017-12-18 08:03:35 +00:00
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"newLine": "LF",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitThis": false,
|
|
|
|
"outDir": "dist/ts/",
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"pretty": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"target": "es5",
|
|
|
|
"types": [
|
|
|
|
"reflect-metadata"
|
|
|
|
],
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
|
|
|
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/ts/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2017-12-18 10:18:04 +00:00
|
|
|
"dist",
|
2017-12-18 08:03:35 +00:00
|
|
|
"config",
|
|
|
|
"node_modules",
|
|
|
|
"public"
|
|
|
|
]
|
|
|
|
}
|