summaryrefslogtreecommitdiff
path: root/js/tsconfig.json
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-06-28 03:10:47 +0700
committerpolwex <polwex@sortug.com>2025-06-28 03:10:47 +0700
commit5bd56c54095a772cf14aae82389bf104338d7ac8 (patch)
tree4f0daa15b7cc08b5de20e7fb96e3ce6752e971dd /js/tsconfig.json
parentb25e9fcf3644d28c61a0af05f5a9d0fc0345449c (diff)
fucking dune man
Diffstat (limited to 'js/tsconfig.json')
-rw-r--r--js/tsconfig.json29
1 files changed, 0 insertions, 29 deletions
diff --git a/js/tsconfig.json b/js/tsconfig.json
deleted file mode 100644
index bfa0fea..0000000
--- a/js/tsconfig.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "compilerOptions": {
- // Environment setup & latest features
- "lib": ["ESNext"],
- "target": "ESNext",
- "module": "Preserve",
- "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,
- "noUncheckedIndexedAccess": true,
- "noImplicitOverride": true,
-
- // Some stricter flags (disabled by default)
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "noPropertyAccessFromIndexSignature": false
- }
-}