Files
soline/tsconfig.json
2026-07-28 19:10:12 +05:30

23 lines
443 B
JSON

{
"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/*"
]
}
}
}