mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-03 08:49:50 +01:00
30 lines
742 B
JSON
30 lines
742 B
JSON
{
|
|
"extends": "../../libs/shared/tsconfig",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ES2020",
|
|
"paths": {
|
|
"tldjs": ["../../libs/common/src/misc/tldjs.noop"],
|
|
"src/*": ["src/*"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
|
"@bitwarden/components": ["../../libs/components/src"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": true
|
|
},
|
|
"files": [
|
|
"src/app/polyfills.ts",
|
|
"src/app/main.ts",
|
|
"../../bitwarden_license/bit-web/src/app/main.ts"
|
|
],
|
|
"include": [
|
|
"src/connectors/*.ts",
|
|
"src/models/*.ts",
|
|
"src/services/*.ts",
|
|
"src/abstractions/*.ts",
|
|
"src/**/*.stories.ts"
|
|
]
|
|
}
|