chore: prepare JS + CSS linter and add CI depending frontend of backend changes

This commit is contained in:
Edouard Vanbelle
2026-04-07 12:21:07 +02:00
parent e752f24c8c
commit 057bab5dad
4 changed files with 126 additions and 6 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"compilerOptions": {
// Enable type checking on all JS files (equivalent to @ts-check globally)
"checkJs": true,
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"target": "ES2022",
"lib": ["ES2022", "DOM"],
// Treat all JS files as modules
"moduleDetection": "force"
},
"include": ["static/js/**/*.js"],
"exclude": []
}