44 lines
785 B
JSON
44 lines
785 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"outDir": "./bin/ts-out",
|
|
"allowJs": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "esNext",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"noImplicitReturns": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"webpack-env"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/**/types",
|
|
"node_modules/@types",
|
|
"./@types"
|
|
],
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2015.promise"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"libs",
|
|
"bower_components",
|
|
"bin",
|
|
"obj"
|
|
],
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
]
|
|
} |