From 70edf4c616e59a8e83e7ca7faf9faefd6e0b817c Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 11 Nov 2023 05:51:13 -0500 Subject: initial commit --- tsconfig.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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 + } +} -- cgit v1.2.3