Files
angular-challenges/tsconfig.base.json
2022-11-23 09:51:59 +01:00

28 lines
707 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@angular-challenges/ngrx-notification/backend": [
"libs/ngrx-notification/backend/src/index.ts"
],
"@angular-challenges/ngrx-notification/model": [
"libs/ngrx-notification/model/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}