ci: fixes

This commit is contained in:
Dax Raad
2025-10-10 18:17:10 -04:00
parent f053862018
commit 07645e0705
5 changed files with 57 additions and 16 deletions

View File

@@ -1,11 +1,18 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"lib": ["DOM", "DOM.Iterable"],
"allowJs": true,
"strict": true,
"noEmit": true,
"isolatedModules": true,
"paths": {
"@/*": ["./src/*"]
}