Add efficient build workflow with npm scripts for translations, CSS/JS processing, and automated release

This commit is contained in:
2025-04-07 21:37:24 +01:00
parent be4ec15f29
commit f643f43481
9 changed files with 379 additions and 47 deletions

26
tsconfig.json Normal file
View File

@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"jsx": "preserve",
"outDir": "./dist/js",
"sourceMap": true,
"declaration": false,
"allowJs": true,
"checkJs": false
},
"include": [
"assets/js/**/*.ts",
"assets/js/**/*.js"
],
"exclude": [
"node_modules",
"vendor",
"dist"
]
}