patch: test 1
Some checks failed
ci/woodpecker/manual/build-pipeline Pipeline failed

This commit is contained in:
spassignat
2026-05-02 10:31:10 +02:00
commit 4ecd596b79
15 changed files with 649 additions and 0 deletions

17
jsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": ["front/*"]
},
"allowSyntheticDefaultImports": true,
"jsx": "preserve"
},
"include": [
"frontend/**/*"
],
"exclude": ["node_modules", "dist"]
}