summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..10684d7
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "module": "es2022",
+ "target": "es2022",
+ "moduleResolution": "node",
+ "lib": ["es2022"],
+
+ "types": ["@cloudflare/workers-types", "@types/node"],
+ "resolveJsonModule": true,
+
+ "allowJs": true,
+ "checkJs": false,
+ "noEmit": true,
+
+ "isolatedModules": true,
+ "allowSyntheticDefaultImports": true,
+ "forceConsistentCasingInFileNames": true,
+
+ "strict": true,
+ "noUncheckedIndexedAccess": true,
+
+ "skipLibCheck": true
+ }
+}