mirror of
https://github.com/bitwarden/browser.git
synced 2025-12-05 09:14:28 +01:00
* Implement and extend tsconfig.base across projects * fixup! Merge remote-tracking branch 'origin/main' into rename-tsconfig * fix: import tsconfig.base from components * fix: skip typechecking node modules * fixing tests * fix the tests for real * undo accidentally change
19 lines
434 B
JSON
19 lines
434 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"include": [
|
|
"apps/web/src/**/*",
|
|
"apps/browser/src/**/*",
|
|
"libs/*/src/**/*",
|
|
"libs/tools/send/**/src/**/*",
|
|
"libs/dirt/card/src/**/*",
|
|
"bitwarden_license/bit-web/src/**/*",
|
|
"bitwarden_license/bit-common/src/**/*"
|
|
],
|
|
"exclude": [
|
|
"apps/web/src/**/*.spec.ts",
|
|
"apps/browser/src/**/*.spec.ts",
|
|
"libs/*/src/**/*.spec.ts",
|
|
"**/*.spec-util.ts"
|
|
]
|
|
}
|