calque/tsconfig.json
2024-10-02 16:31:23 +02:00

19 lines
450 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/types/client", "@types/wicg-file-system-access"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
}
}