42 lines
764 B
JSON
42 lines
764 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "src/ts",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"lib": [
|
|
"dom",
|
|
"es6"
|
|
],
|
|
"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": [
|
|
"build",
|
|
"config",
|
|
"node_modules",
|
|
"public"
|
|
]
|
|
}
|