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

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

30 lines
742 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",
2018-06-05 05:10:41 +02:00
"paths": {
2022-06-03 18:01:07 +02:00
"tldjs": ["../../libs/common/src/misc/tldjs.noop"],
2022-06-14 17:10:53 +02:00
"src/*": ["src/*"],
"@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": {
"preserveWhitespaces": true
},
"files": [
"src/app/polyfills.ts",
"src/app/main.ts",
"../../bitwarden_license/bit-web/src/app/main.ts"
],
"include": [
"src/connectors/*.ts",
"src/models/*.ts",
"src/services/*.ts",
2022-06-17 16:23:04 +02:00
"src/abstractions/*.ts",
"src/**/*.stories.ts"
]
2018-06-05 05:10:41 +02:00
}