bitwarden-estensione-browser/apps/web/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
733 B
JSON
Raw Normal View History

2018-06-05 05:10:41 +02:00
{
2022-06-03 18:01:07 +02:00
"extends": "../../libs/shared/tsconfig",
2018-06-05 05:10:41 +02:00
"compilerOptions": {
"baseUrl": ".",
"module": "ES2020",
"resolveJsonModule": true,
2018-06-05 05:10:41 +02:00
"paths": {
"@bitwarden/web-vault/*": ["src/*"],
2022-06-14 17:10:53 +02:00
"@bitwarden/common/*": ["../../libs/common/src/*"],
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
"@bitwarden/components": ["../../libs/components/src"]
2018-06-05 05:10:41 +02:00
}
},
2018-09-13 17:57:28 +02:00
"angularCompilerOptions": {
"strictTemplates": true,
2018-09-13 17:57:28 +02:00
"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/services/**/*.worker.ts"
]
2018-06-05 05:10:41 +02:00
}