1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00
bitwarden-browser/bitwarden_license/bit-web/tsconfig.json
Oscar Hinton 4869a231bf
[EC-251] Fix web local development (#2775)
* Wip

* Fix bitwarden licensed web

* Fix template paths

* Cleanup gitattributes git-blame-ignore-revs

* Fix tsconfig, add postcss and tailwind config to bitwarden_license.

* And done
2022-06-02 10:59:43 -05:00

28 lines
804 B
JSON

{
"extends": "../../apps/web/jslib/shared/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"tldjs": ["../../apps/web/jslib/common/src/misc/tldjs.noop"],
"jslib-common/*": ["../../apps/web/jslib/common/src/*"],
"jslib-angular/*": ["../../apps/web/jslib/angular/src/*"],
"@bitwarden/components": ["../../apps/web/jslib/components/src"],
"src/*": ["../../apps/web/src/*"]
}
},
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"files": [
"../../apps/web/src/app/polyfills.ts",
"../../apps/web/src/app/main.ts",
"src/app/main.ts"
],
"include": [
"../../apps/web/src/connectors/*.ts",
"../../apps/web/src/models/*.ts",
"../../apps/web/src/services/*.ts",
"../../apps/web/src/abstractions/*.ts"
]
}