21 lines
392 B
JSON
21 lines
392 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"$/*": ["./"],
|
|
"@/*": ["./public/*"]
|
|
}
|
|
}
|
|
}
|