Files
Oxicloud/jsconfig.json
T

23 lines
654 B
JSON
Raw Normal View History

{
"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,
"strict": true,
2026-04-30 02:02:27 +02:00
"noEmit": true,
"noImplicitAny": false,
"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"
},
"include": ["static/js/**/*.js"],
2026-04-30 02:02:27 +02:00
"exclude": ["static/js/vendors/**", "static/js/vendors/**/*.mjs"]
}