mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
23 lines
578 B
JSON
23 lines
578 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "ES2020",
|
|
"target": "ES2016",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"preserveWhitespaces": true
|
|
},
|
|
"include": ["src", "../../libs/common/src/services/**/*.worker.ts"]
|
|
}
|