wip: css and ui packages

This commit is contained in:
Adam
2025-10-14 07:14:26 -05:00
parent 4af079fd59
commit afc475f9a4
28 changed files with 2392 additions and 123 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
// General
"jsx": "preserve",
"jsxImportSource": "solid-js",
"target": "ESNext",
// Modules
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
// Type Checking & Safety
"strict": true,
"types": ["vite/client"]
}
}