signalstats/tsconfig.json
2024-12-08 11:27:16 +01:00

30 lines
No EOL
612 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": [
"vite/client"
],
"noEmit": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
},
},
// "files": [
// "./eslint.config.js",
// "./prettier.config.js",
// "./tailwind.config.js",
// "./postcss.config.js",
// ]
}