backend/tsconfig.json

19 lines
413 B
JSON

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