1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-02 11:31:44 +00:00
Files
browser/libs/components/tsconfig.json
addisonbeck a1f8866557 move logout-reason to a new logout package
In order to remove references in bitwarden/common to bitwarden/auth I have
create a new package, logout, and moved the logout-reason type to it. This
type is referenced many times in common.
2025-05-22 17:57:33 -04:00

41 lines
1.1 KiB
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2017",
"module": "es2020",
"lib": ["es2020", "dom"],
"paths": {
"@bitwarden/common/*": ["../common/src/*"],
"@bitwarden/platform": ["../platform/src"],
"@bitwarden/ui-common": ["../ui/common/src"],
"@bitwarden/ui-common/setup-jest": ["../ui/common/src/setup-jest"],
"@bitwarden/logout": ["../logout/src"]
},
"plugins": [
{
"name": "typescript-strict-plugin"
}
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}