aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 19:37:21 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 19:37:21 +0530
commit10f7749d52df9a70e15a33cd76ba441f4b81a1a5 (patch)
tree153cf3f39f9573c23744333a5d6cc678ba514b61 /tsconfig.json
parentb34cdba24fe2c2b445adcb3cf7c3e65e79ff6fd0 (diff)
rendered a simple non-functional menu/navbar
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"
+ ]
+}