webapp/tsconfig.json

25 lines
562 B
JSON
Raw Permalink Normal View History

2022-09-09 11:53:35 +00:00
{
"compilerOptions": {
2022-10-04 11:42:12 +00:00
"allowSyntheticDefaultImports": true,
2022-09-09 11:53:35 +00:00
"jsx": "preserve",
2022-10-04 11:42:12 +00:00
"jsxImportSource": "solid-js",
"target": "ESNext",
"module": "ESNext",
2024-06-24 17:50:27 +00:00
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/types/client"],
2022-10-04 11:42:12 +00:00
"resolveJsonModule": true,
2023-02-17 09:21:02 +00:00
"skipLibCheck": true,
2022-10-04 11:42:12 +00:00
"isolatedModules": true,
2024-06-24 17:50:27 +00:00
"lib": ["DOM", "ESNext"],
"paths": {
"~/*": ["./src/*"],
"@/*": ["./public/*"]
}
2024-06-25 11:25:20 +00:00
},
"exclude": ["./src/pages"]
2022-09-09 11:53:35 +00:00
}