aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-01-23 15:52:49 -0500
committerAndrew Lee <andrew@alee14.me>2025-01-23 15:52:49 -0500
commita1b29429b53f0c97a014403534312596da0f4cc1 (patch)
tree8d99d064fa65ddb0200cb763a4c7314f8730f46f /tsconfig.json
downloadbnbaim-auth-a1b29429b53f0c97a014403534312596da0f4cc1.tar.gz
bnbaim-auth-a1b29429b53f0c97a014403534312596da0f4cc1.tar.bz2
bnbaim-auth-a1b29429b53f0c97a014403534312596da0f4cc1.zip
Initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json27
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
+ }
+}