mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
8c59eef257
* Add test cases from previous PR https://github.com/bitwarden/jslib/pull/547 * Install tldts as replacement for tldjs * Use tldts for hostname and domain retrieval/validation * Remove usage of old tldjs.noop-implementation * Add handling of about protocol * Remove usage of tldEndingRegex and use tldts check instead * Uninstall @types/tldjs and tldjs * Updated package-lock.json * Fix accessibility cookie check * Rename loginUriView.spec to login-uri-view.spec * Add test for getDomain failing file links * getHostName - Return null when given, data, about or file links
20 lines
635 B
JSON
20 lines
635 B
JSON
{
|
|
"extends": "../../libs/shared/tsconfig",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ES2020",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@bitwarden/web-vault/*": ["src/*"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
|
"@bitwarden/components": ["../../libs/components/src"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": true
|
|
},
|
|
"files": ["src/polyfills.ts", "src/main.ts", "../../bitwarden_license/bit-web/src/main.ts"],
|
|
"include": ["src/connectors/*.ts", "src/**/*.stories.ts", "src/**/*.spec.ts"]
|
|
}
|