summaryrefslogtreecommitdiff
path: root/packages/lang/tsconfig.json
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-11-23 13:29:28 +0700
committerpolwex <polwex@sortug.com>2025-11-23 13:29:28 +0700
commitba2dbc660c229d3e86662d35513dfa7c904d9870 (patch)
treeafdc039ac31587be0a3d089d024222fb2023fbe9 /packages/lang/tsconfig.json
parentcb1b56f5a0eddbf77446f415f2beda57c8305f85 (diff)
Diffstat (limited to 'packages/lang/tsconfig.json')
-rw-r--r--packages/lang/tsconfig.json29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/lang/tsconfig.json b/packages/lang/tsconfig.json
deleted file mode 100644
index bfa0fea..0000000
--- a/packages/lang/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
- }
-}