1
0
mirror of https://github.com/bitwarden/web synced 2026-02-06 03:33:35 +00:00
Files
web/tsconfig.json
2022-01-25 20:06:29 +01:00

19 lines
487 B
JSON

{
"extends": "./jslib/shared/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"skipLibCheck": true,
"paths": {
"tldjs": ["jslib/common/src/misc/tldjs.noop"],
"jslib-common/*": ["jslib/common/src/*"],
"jslib-angular/*": ["jslib/angular/src/*"],
"src/*": ["src/*"]
}
},
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"files": ["src/main.ts"],
"include": ["src/connectors/*.ts", "src/models/*.ts", "src/services/*.ts"]
}