aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-26 01:26:19 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-25 23:26:19 +0000
commit465b5772763ccb8d4970d4c55e30a518abb7be3e (patch)
treee929e34910dbf6a3958cdc4de77dc1dcae93e7b0 /tsconfig.json
parentchore: add more strict types in electron directory (#367) (diff)
downloadferdium-app-465b5772763ccb8d4970d4c55e30a518abb7be3e.tar.gz
ferdium-app-465b5772763ccb8d4970d4c55e30a518abb7be3e.tar.zst
ferdium-app-465b5772763ccb8d4970d4c55e30a518abb7be3e.zip
chore: moved tests to ./test directory (#366)
* chore: allow coverage to be generated from non-tested files
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index c600df5cf..3e7ffc854 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -12,7 +12,6 @@
12 "module": "CommonJS", 12 "module": "CommonJS",
13 "jsx": "react-jsx", 13 "jsx": "react-jsx",
14 "typeRoots": [ 14 "typeRoots": [
15 "@types",
16 "node_modules/@types" 15 "node_modules/@types"
17 ], 16 ],
18 "moduleResolution": "node", 17 "moduleResolution": "node",
@@ -46,6 +45,7 @@
46 }, 45 },
47 "include": [ 46 "include": [
48 "src", 47 "src",
49 "scripts" 48 "scripts",
49 "test",
50 ], 50 ],
51} 51}