1
0
mirror of https://github.com/bitwarden/desktop synced 2025-12-16 16:23:23 +00:00

Fix VS code ts language server no longer working after #866 (#872)

This commit is contained in:
Oscar Hinton
2021-05-06 16:45:27 +02:00
committed by GitHub
parent 266f089b3e
commit a712917f47
3 changed files with 9 additions and 8 deletions

1
src/global.d.ts vendored
View File

@@ -1,2 +1,3 @@
declare function escape(s: string): string;
declare function unescape(s: string): string;
declare module 'forcefocus';

View File

@@ -21,9 +21,7 @@
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"files": [
"src/entry.ts",
"src/global.d.ts",
"jslib/src/globals.d.ts"
"include": [
"src"
]
}

View File

@@ -1,8 +1,10 @@
{
"extends": "./tsconfig.json",
"files": [
"src/app/main.ts",
"src/global.d.ts",
"jslib/src/globals.d.ts"
"exclude": [
"src/entry.ts",
"src/main.ts",
"src/main",
"src/proxy",
"jslib/**/*.main.ts"
]
}