signalstats/tsconfig.json
2025-01-22 16:56:43 +01:00

21 lines
498 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"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/*"]
}
}
}