22 lines
522 B
JSON
22 lines
522 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"types": ["vite/client", "@types/umami"],
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"baseUrl": ".",
|
|
"lib": ["ESNext", "DOM", "WebWorker"],
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|