aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-07-21 15:41:56 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-07-21 15:41:56 -0700
commit452c41a75aa2f9036614d677fda3867221db959e (patch)
tree98f2ee2ccd0858a120c5cd618641615f0fc5e026 /tsconfig.json
downloadmon.hatecomputers.club-452c41a75aa2f9036614d677fda3867221db959e.tar.gz
mon.hatecomputers.club-452c41a75aa2f9036614d677fda3867221db959e.zip
add a simple email job
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
+ }
+}