aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorsoaos <soaos@soaos.dev>2026-04-04 15:43:46 -0400
committersoaos <soaos@soaos.dev>2026-04-04 15:43:46 -0400
commitbf5e4797811adf728c1495f9e20f9c1c3db3586a (patch)
treecf14bd54417eac9d69d9b3676ed2846d2fcaa26f /tsconfig.json
Initial Commit (Fresh Start)HEADmaster
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..f6685a5
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "compilerOptions": {
+ "module": "Node16",
+ "target": "ES2022",
+ "outDir": "out",
+ "lib": [
+ "ES2022"
+ ],
+ "sourceMap": true,
+ "rootDir": "src",
+ "skipLibCheck": true,
+ "strict": true, /* enable all strict type-checking options */
+ /* Additional Checks */
+ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
+ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
+ // "noUnusedParameters": true, /* Report errors on unused parameters. */
+ }
+}