2018-06-05 05:10:41 +02:00
|
|
|
{
|
2022-06-03 18:01:07 +02:00
|
|
|
"extends": "../../libs/shared/tsconfig",
|
2018-06-05 05:10:41 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
2022-06-28 22:24:21 +02:00
|
|
|
"module": "ES2020",
|
2022-08-03 21:40:04 +02:00
|
|
|
"resolveJsonModule": true,
|
2018-06-05 05:10:41 +02:00
|
|
|
"paths": {
|
2022-06-14 17:10:53 +02:00
|
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
2023-08-08 15:37:25 +02:00
|
|
|
"@bitwarden/auth": ["../../libs/auth/src"],
|
|
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
2023-03-23 11:43:27 +01:00
|
|
|
"@bitwarden/components": ["../../libs/components/src"],
|
2023-08-08 15:37:25 +02:00
|
|
|
"@bitwarden/exporter/*": ["../../libs/exporter/src/*"],
|
2023-10-19 11:17:23 +02:00
|
|
|
"@bitwarden/importer/core": ["../../libs/importer/src"],
|
|
|
|
"@bitwarden/importer/ui": ["../../libs/importer/src/components"],
|
2023-08-22 16:02:48 +02:00
|
|
|
"@bitwarden/vault": ["../../libs/vault/src"],
|
2023-08-08 15:37:25 +02:00
|
|
|
"@bitwarden/web-vault/*": ["src/*"]
|
2018-06-05 05:10:41 +02:00
|
|
|
}
|
|
|
|
},
|
2018-09-13 17:57:28 +02:00
|
|
|
"angularCompilerOptions": {
|
2022-11-28 18:59:46 +01:00
|
|
|
"strictTemplates": true,
|
2018-09-13 17:57:28 +02:00
|
|
|
"preserveWhitespaces": true
|
|
|
|
},
|
2022-07-25 15:13:54 +02:00
|
|
|
"files": ["src/polyfills.ts", "src/main.ts", "../../bitwarden_license/bit-web/src/main.ts"],
|
2022-10-27 23:38:54 +02:00
|
|
|
"include": [
|
|
|
|
"src/connectors/*.ts",
|
|
|
|
"src/**/*.stories.ts",
|
|
|
|
"src/**/*.spec.ts",
|
2023-06-06 22:34:53 +02:00
|
|
|
"../../libs/common/src/platform/services/**/*.worker.ts"
|
2022-10-27 23:38:54 +02:00
|
|
|
]
|
2018-06-05 05:10:41 +02:00
|
|
|
}
|