25 lines
562 B
JSON
25 lines
562 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"types": ["vinxi/types/client"],
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@/*": ["./public/*"]
|
|
}
|
|
},
|
|
"exclude": ["./src/pages"]
|
|
}
|