aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-22 00:32:18 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-21 22:32:18 +0000
commit73ba955e344c8ccedd43235495ef8b72b5a2b6fd (patch)
tree03766ab32fefe7e83026a14393527f1dcbaed849 /tsconfig.json
parentdocs: add cino as a contributor for infra [skip ci] (#330) (diff)
downloadferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.tar.gz
ferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.tar.zst
ferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.zip
chore: Transform AppStore.js into Typescript (#329)
* turn actions into typescript * correct tsconfig * added TypedStore
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json22
1 files changed, 17 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index ae0d6083f..c600df5cf 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,12 +5,21 @@
5 "baseUrl": ".", 5 "baseUrl": ".",
6 "strict": true, 6 "strict": true,
7 "target": "esnext", 7 "target": "esnext",
8 "lib": ["esnext", "dom"], 8 "lib": [
9 "esnext",
10 "dom"
11 ],
9 "module": "CommonJS", 12 "module": "CommonJS",
10 "jsx": "react-jsx", 13 "jsx": "react-jsx",
11 "typeRoots": ["@types", "node_modules/@types"], 14 "typeRoots": [
15 "@types",
16 "node_modules/@types"
17 ],
12 "moduleResolution": "node", 18 "moduleResolution": "node",
13 "types": ["node", "jest"], 19 "types": [
20 "node",
21 "jest"
22 ],
14 "sourceMap": true, 23 "sourceMap": true,
15 "skipLibCheck": true, 24 "skipLibCheck": true,
16 // TODO: Need to switch 25 // TODO: Need to switch
@@ -18,7 +27,7 @@
18 "pretty": true, 27 "pretty": true,
19 "allowSyntheticDefaultImports": true, 28 "allowSyntheticDefaultImports": true,
20 "experimentalDecorators": true, 29 "experimentalDecorators": true,
21 "composite": true, 30 "composite": false,
22 // TODO: Change this config option to false once ms v3 is released and adopted 31 // TODO: Change this config option to false once ms v3 is released and adopted
23 "esModuleInterop": true, 32 "esModuleInterop": true,
24 "importHelpers": true, 33 "importHelpers": true,
@@ -35,5 +44,8 @@
35 "resolveJsonModule": true, 44 "resolveJsonModule": true,
36 "forceConsistentCasingInFileNames": true 45 "forceConsistentCasingInFileNames": true
37 }, 46 },
38 "exclude": ["node_modules", "build"] 47 "include": [
48 "src",
49 "scripts"
50 ],
39} 51}