diff options
Diffstat (limited to 'editors/code/tsconfig.json')
-rw-r--r-- | editors/code/tsconfig.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index ad134865a..32d1a865f 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json | |||
@@ -9,7 +9,7 @@ | |||
9 | "esModuleInterop": true, | 9 | "esModuleInterop": true, |
10 | "allowSyntheticDefaultImports": true, | 10 | "allowSyntheticDefaultImports": true, |
11 | "sourceMap": true, | 11 | "sourceMap": true, |
12 | "rootDir": "src", | 12 | "rootDir": ".", |
13 | "strict": true, | 13 | "strict": true, |
14 | "noUnusedLocals": true, | 14 | "noUnusedLocals": true, |
15 | "noUnusedParameters": true, | 15 | "noUnusedParameters": true, |
@@ -18,6 +18,11 @@ | |||
18 | "newLine": "LF" | 18 | "newLine": "LF" |
19 | }, | 19 | }, |
20 | "exclude": [ | 20 | "exclude": [ |
21 | "node_modules" | 21 | "node_modules", |
22 | ".vscode-test" | ||
23 | ], | ||
24 | "include": [ | ||
25 | "src", | ||
26 | "tests" | ||
22 | ] | 27 | ] |
23 | } | 28 | } |