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