This repository has been archived on 2025-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
gardev-startpage/tsconfig.json
Georgi Gardev 8fd3d97cd1 Initial commit
2023-11-17 18:24:36 +02:00

18 lines
358 B
JSON

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