qrframe/tsconfig.json

21 wiersze
445 B
JSON

2024-05-05 03:34:27 +00:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2024-09-05 05:50:13 +00:00
"moduleResolution": "Bundler",
2024-05-05 03:34:27 +00:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"noEmit": true,
"strict": true,
2024-08-31 00:19:53 +00:00
"noImplicitAny": false,
2024-05-05 03:34:27 +00:00
"types": ["vinxi/types/client"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"],
2024-05-05 03:34:27 +00:00
}
}
}