aboutsummaryrefslogtreecommitdiff
path: root/editors/code/tsconfig.json
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-05-23 15:39:04 +0100
committerGitHub <[email protected]>2020-05-23 15:39:04 +0100
commitf4f5fca10175b8d5fdfa36563c103f81b2b0acd3 (patch)
tree456d16e30fb799f82f71cff4c7aa91b0248c0220 /editors/code/tsconfig.json
parent4cc2ff6e390b6d8015ed1d266425459268f6e0b0 (diff)
parent1797b665a4dd82ba176b319c850a8875df327a5d (diff)
Merge pull request #4538 from vsrs/vscode_tests
vscode client side tests
Diffstat (limited to 'editors/code/tsconfig.json')
-rw-r--r--editors/code/tsconfig.json9
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}