2018-01-16 20:48:34 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
2018-01-23 05:37:36 +01:00
|
|
|
"emitDecoratorMetadata": true,
|
2018-01-16 20:48:34 +01:00
|
|
|
"experimentalDecorators": true,
|
2022-10-27 23:38:54 +02:00
|
|
|
"module": "ES2020",
|
2018-01-16 20:48:34 +01:00
|
|
|
"target": "ES2016",
|
|
|
|
"sourceMap": true,
|
2021-04-23 10:45:30 +02:00
|
|
|
"types": [],
|
2018-01-16 20:48:34 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2022-06-14 17:10:53 +02:00
|
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
2022-12-02 12:45:09 +01:00
|
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"]
|
2018-01-16 20:48:34 +01:00
|
|
|
}
|
|
|
|
},
|
2018-09-13 18:04:04 +02:00
|
|
|
"angularCompilerOptions": {
|
2022-11-28 18:59:46 +01:00
|
|
|
"strictTemplates": true,
|
2018-09-13 18:04:04 +02:00
|
|
|
"preserveWhitespaces": true
|
|
|
|
},
|
2022-10-27 23:38:54 +02:00
|
|
|
"include": ["src", "../../libs/common/src/services/**/*.worker.ts"]
|
2018-01-16 20:48:34 +01:00
|
|
|
}
|