mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
a5e3432f85
Assign ownership to many of the remaining libs/common files. Criteria for ownership: * Files used by a single team, is now owned by that team. * Files related to a domain owned by a team is now owned by that team. * Where ownership is unclear the "lowest level" service takes ownership.
31 lines
1.0 KiB
JSON
31 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "ES2020",
|
|
"target": "ES2016",
|
|
"sourceMap": true,
|
|
"types": [],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
|
"@bitwarden/auth": ["../../libs/auth/src"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/components": ["../../libs/components/src"],
|
|
"@bitwarden/exporter/*": ["../../libs/exporter/src/*"],
|
|
"@bitwarden/importer/core": ["../../libs/importer/src"],
|
|
"@bitwarden/importer/ui": ["../../libs/importer/src/components"],
|
|
"@bitwarden/node/*": ["../../libs/node/src/*"],
|
|
"@bitwarden/vault": ["../../libs/vault/src"]
|
|
},
|
|
"useDefineForClassFields": false
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"preserveWhitespaces": true
|
|
},
|
|
"include": ["src", "../../libs/common/src/platform/services/**/*.worker.ts"]
|
|
}
|