mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
4a1c3eb1ec
* Create base jest.config file * Fix various tests that were broken * Add maxWorkers to jest config * Undo change to testEnvironment * Enable tsconfig.spec.json
21 lines
676 B
JSON
21 lines
676 B
JSON
{
|
|
"extends": "../../libs/shared/tsconfig",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ES2020",
|
|
"resolveJsonModule": true,
|
|
"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/polyfills.ts", "src/main.ts", "../../bitwarden_license/bit-web/src/main.ts"],
|
|
"include": ["src/connectors/*.ts", "src/**/*.stories.ts", "src/**/*.spec.ts"]
|
|
}
|