mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-26 12:25:20 +01:00
4869a231bf
* 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
28 lines
804 B
JSON
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"
|
|
]
|
|
}
|