summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2022-08-29 10:16:07 +0300
committerYuval Adam <_@yuv.al>2022-08-29 10:16:55 +0300
commit5e346930cb9e0672e15fbda4621a9b72e8b072e4 (patch)
treef78cb35d21ed638b653d12acd69eb8bc649afe9f /tsconfig.json
parent04380730738b9b3af6be94c0b3a582f35f01f4d9 (diff)
Add support for typescript
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..a273b0c
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noFallthroughCasesInSwitch": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx"
+ },
+ "include": [
+ "src"
+ ]
+}