diff options
| author | seth <[email protected]> | 2023-11-11 05:51:13 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-11 05:54:16 -0500 |
| commit | 70edf4c616e59a8e83e7ca7faf9faefd6e0b817c (patch) | |
| tree | 353b1b397a8a57c462bf6eb5ccee46b6ac85f35f /tsconfig.json | |
initial commit
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 24 |
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 + } +} |
