npx degit solidjs/templates/ts-unocss solid-ts

This commit is contained in:
严浩
2024-08-05 11:08:29 +08:00
commit 81b11953e1
10 changed files with 1867 additions and 0 deletions

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true,
},
}