From 951b316773265052fbc5fa546bbcf31bef277062 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Tue, 14 Jul 2026 14:20:41 -0400 Subject: Update --- 2026/games/gbjk/src/tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 2026/games/gbjk/src/tsconfig.json (limited to '2026/games/gbjk/src/tsconfig.json') diff --git a/2026/games/gbjk/src/tsconfig.json b/2026/games/gbjk/src/tsconfig.json new file mode 100644 index 0000000..1ab38c8 --- /dev/null +++ b/2026/games/gbjk/src/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "target": "es2023", + "module": "esnext", + "lib": ["ES2023", "DOM"], + "types": ["vite/client"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["src"] +} -- cgit v1.3.1