From 90c1a68d6478138f538094fc83e48da8ddd21fa0 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sun, 15 Feb 2026 17:30:34 -0800 Subject: Scaffold Vanilla JS Frontend (v3): Create directory, update Makefile/web.go, embed dist/v3 --- frontend-vanilla/tsconfig.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 frontend-vanilla/tsconfig.json (limited to 'frontend-vanilla/tsconfig.json') diff --git a/frontend-vanilla/tsconfig.json b/frontend-vanilla/tsconfig.json new file mode 100644 index 0000000..4ba8dd9 --- /dev/null +++ b/frontend-vanilla/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "ES2022", + "useDefineForClassFields": true, + "module": "ESNext", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "types": ["vite/client"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} -- cgit v1.2.3