aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-08-09 22:48:19 +0530
committerAkshay Nair <phenax5@gmail.com>2023-08-09 22:48:19 +0530
commit5a659a47c6e4823c2e29dd03eb8988270157de43 (patch)
tree665047b16c6d99dc03e6a196f92a1dda72ab7067 /tsconfig.json
downloadcss-everything-5a659a47c6e4823c2e29dd03eb8988270157de43.tar.gz
css-everything-5a659a47c6e4823c2e29dd03eb8988270157de43.zip
chore: init commit is the shit that makes me want to quit
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..41c7199
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src"]
+}