fixed ci script

This commit is contained in:
MasterGordon 2025-08-31 21:06:19 +02:00
parent 04e4278bab
commit ac413285bf
5 changed files with 10 additions and 5 deletions

View File

@ -8,4 +8,4 @@ jobs:
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run tsc
- run: bun -F '*' run tsc

View File

@ -4,7 +4,8 @@
"type": "module",
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun run --watch --hot src/index.tsx"
"dev": "bun run --watch --hot src/index.tsx",
"tsc": "tsc"
},
"devDependencies": {
"@types/bun": "latest",

View File

@ -27,5 +27,6 @@
"paths": {
"~/*": ["./src/*"]
}
}
},
"include": ["src/**/*"]
}

View File

@ -4,7 +4,8 @@
"type": "module",
"private": true,
"scripts": {
"dev": "bun run index.html"
"dev": "bun run index.html",
"tsc": "tsc"
},
"devDependencies": {
"@types/bun": "latest"

View File

@ -3,7 +3,9 @@
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {},
"scripts": {
"tsc": "tsc"
},
"devDependencies": {
"typescript": "^5.9.2",
"@types/bun": "latest"