maps/lightning/tsconfig.json
2023-04-15 04:34:50 -04:00

21 lines
471 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"jsxImportSource": "solid-js",
"jsx": "preserve",
"strict": true,
"types": [
"solid-start/env"
],
"baseUrl": "./",
"paths": {
"~/*": [
"./src/*"
]
}
}
}