build: add tailwind v4 and ts tooling

This commit is contained in:
2026-04-14 23:43:41 +02:00
parent 5122348169
commit 93cb99fd94
8 changed files with 684 additions and 1 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Bundler",
"strict": true,
"noEmitOnError": true,
"outDir": "./static/js",
"rootDir": "./static/ts",
"sourceMap": false,
"removeComments": false,
"skipLibCheck": true
},
"include": [
"static/ts/**/*.ts"
]
}