karideo/front/tsconfig.json

27 lines
565 B
JSON
Raw Normal View History

2019-12-21 21:53:18 +01:00
{
"compileOnSave": false,
"compilerOptions": {
2020-01-03 21:52:02 +01:00
"downlevelIteration": true,
"importHelpers": true,
2019-12-21 21:53:18 +01:00
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2018",
2019-12-21 21:53:18 +01:00
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
2019-12-21 21:53:18 +01:00
"dom"
2020-01-03 21:52:02 +01:00
],
2020-10-16 09:03:12 +02:00
"module": "es2020",
"baseUrl": "./src",
"paths": {
"@app/*": ["./src/app/*"],
"@common/*": ["./src/common/*"]
}
2019-12-21 21:53:18 +01:00
}
2020-01-03 21:52:02 +01:00
}