2018-05-08 01:23:35 +03:00
|
|
|
{
|
2018-05-11 03:24:59 +03:00
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
2022-01-17 17:11:18 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-01-19 17:49:56 +03:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-05-11 03:24:59 +03:00
|
|
|
"declaration": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./dist/scripts",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2022-01-19 17:49:56 +03:00
|
|
|
"target": "es5",
|
|
|
|
"downlevelIteration": true,
|
2018-05-11 03:24:59 +03:00
|
|
|
"jsx": "react",
|
|
|
|
"noImplicitAny": true,
|
2020-05-04 18:33:03 +03:00
|
|
|
"sourceMap": true,
|
2022-01-19 17:49:56 +03:00
|
|
|
"lib": [ "es2017", "dom", "esnext.array", "ES2015.Generator"],
|
2022-01-17 17:11:18 +03:00
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
|
|
"resources/*": ["resources/*"],
|
|
|
|
"src/*": ["./*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"exclude": ["karma.conf.ts", "node_modules", "dist"],
|
|
|
|
"typeRoots": ["./core/expression", "../node_modules/@types"]
|
2018-05-11 03:24:59 +03:00
|
|
|
}
|