Files
Oxicloud/jsconfig.json
T

26 lines
747 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,
2026-05-07 23:40:02 +02:00
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2026-05-07 23:40:02 +02:00
"strictFunctionTypes": 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-05-07 23:40:02 +02:00
"include": ["static/js/**/*.js" ],
"exclude": ["static/js/vendors/**", "static/js/vendors/**/*.mjs", "static/js/vendors/**/*.js" ]
}