aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorGravatar garronej <[email protected]>2022-09-06 19:22:23 +0200
committerGravatar garronej <[email protected]>2022-09-06 19:22:23 +0200
commit518d381447b61cd4b47c0102d760e4e4260f7b9f (patch)
treed3f50a52b7637a0a54342143b3153f36fd376858 /tsconfig.json
parentInitial commit (diff)
Initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..80357ec
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "baseUrl": "src",
+ "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"]
+}