panorama/tsconfig.json

18 lines
361 B
JSON
Raw Normal View History

2023-03-28 21:36:36 +00:00
{
"compilerOptions": {
2023-04-18 07:38:22 +00:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2023-03-28 21:36:36 +00:00
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"jsxImportSource": "solid-js",
2023-04-18 07:38:22 +00:00
"jsx": "preserve",
"strict": true,
"types": ["solid-start/env"],
"baseUrl": "./",
2023-03-30 01:56:52 +00:00
"paths": {
2023-04-18 07:38:22 +00:00
"~/*": ["./src/*"]
2023-03-30 01:56:52 +00:00
}
2023-03-28 21:36:36 +00:00
}
}