soline init

This commit is contained in:
2026-07-28 19:10:12 +05:30
commit 22c9e2d1c4
54 changed files with 5532 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": [
"@solidjs/start/env"
],
"isolatedModules": true,
"paths": {
"~/*": [
"./src/*"
]
}
}
}