{ "compilerOptions": { // Enable type checking on all JS files (equivalent to @ts-check globally) "checkJs": true, "allowJs": true, "strict": true, "noEmit": true, "noImplicitAny": false, "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true, "lib": ["ES2022", "DOM"], // Treat all JS files as modules "moduleDetection": "force", "strictNullChecks": false, // too much pedantic... "moduleResolution": "bundler", "skipLibCheck": true, "target": "ESNext" }, "include": ["static/js/**/*.js"], "exclude": ["static/js/vendors/**", "static/js/vendors/**/*.mjs"] }