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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"
]
}