diff options
| author | polwex <polwex@sortug.com> | 2025-02-13 12:29:32 +0700 |
|---|---|---|
| committer | polwex <polwex@sortug.com> | 2025-02-13 12:29:32 +0700 |
| commit | 4c6913644b362b28f15b125c2fbe48165f1e048c (patch) | |
| tree | 147f5e16f18e956fe55959ac3e03e5afb03b9b52 /tsconfig.json | |
init
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..238655f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + // Enable latest features + "lib": ["ESNext", "DOM"], + "target": "ESNext", + "module": "ESNext", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, + + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false + } +} |
