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

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

28 lines
658 B
JSON
Raw Normal View History

2018-06-05 05:10:41 +02:00
{
2022-01-17 15:53:19 +01:00
"extends": "./jslib/shared/tsconfig",
2018-06-05 05:10:41 +02:00
"compilerOptions": {
"baseUrl": ".",
"paths": {
"tldjs": ["jslib/common/src/misc/tldjs.noop"],
"jslib-common/*": ["jslib/common/src/*"],
"jslib-angular/*": ["jslib/angular/src/*"],
2022-03-08 18:18:03 +01:00
"@bitwarden/components": ["jslib/components/src"],
"src/*": ["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",
"src/abstractions/*.ts"
]
2018-06-05 05:10:41 +02:00
}