mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
2358443102
* feat: update service container for required service injection, refs AC-1679 * feat: complete approve all command, refs AC-1679 * fix: cast service container to access bit services, refs AC-1679 * fix: override service container from base program, refs AC-1679 * fix: prettier, refs AC-1679 * feat: replace hardcoded strings with i18n translations (future-proofing), refs AC-1679 * chore: remove i18n references, refs AC-1679 * fix: update approve-all and deny-all commands to match desired input, refs AC-1679
30 lines
1008 B
JSON
30 lines
1008 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"target": "ES2016",
|
|
"module": "es6",
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@bitwarden/cli/*": ["../../apps/cli/src/*"],
|
|
"@bitwarden/common/spec": ["../../libs/common/spec"],
|
|
"@bitwarden/auth/common": ["../../libs/auth/src/common"],
|
|
"@bitwarden/auth/angular": ["../../libs/auth/src/angular"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/importer/core": ["../../libs/importer/src"],
|
|
"@bitwarden/vault-export-core": [
|
|
"../../libs/tools/export/vault-export/vault-export-core/src"
|
|
],
|
|
"@bitwarden/node/*": ["../../libs/node/src/*"],
|
|
"@bitwarden/bit-common/*": ["../../bitwarden_license/bit-common/src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "src/**/*.spec.ts"]
|
|
}
|