mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-15 10:35:20 +01:00
f43272f243
* scaffold new lib * update jest config * update tsconfig * add readme * update tailwind config * update package-lock * update tsconfigs * update jest displayName * update tsconfig.libs.json * fix alias glob * update package lock * add readme to whitelist-capital-letters * update CODEOWNERS * remove test utils * update eslint rules * alphabetize eslint and tsconfig * sort jest config --------- Co-authored-by: Oscar Hinton <Hinton@users.noreply.github.com>
29 lines
912 B
JSON
29 lines
912 B
JSON
{
|
|
"extends": "../../libs/shared/tsconfig",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ES2020",
|
|
"resolveJsonModule": true,
|
|
"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": ["../../libs/importer/src"],
|
|
"@bitwarden/web-vault/*": ["src/*"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"preserveWhitespaces": true
|
|
},
|
|
"files": ["src/polyfills.ts", "src/main.ts", "../../bitwarden_license/bit-web/src/main.ts"],
|
|
"include": [
|
|
"src/connectors/*.ts",
|
|
"src/**/*.stories.ts",
|
|
"src/**/*.spec.ts",
|
|
"../../libs/common/src/platform/services/**/*.worker.ts"
|
|
]
|
|
}
|