website/tsconfig.json

19 lines
450 B
JSON
Raw Normal View History

2023-09-30 19:41:12 +00:00
{
"compilerOptions": {
"typeRoots": ["./node_modules/@types", "./src/types"],
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true,
"noImplicitAny": true,
"alwaysStrict": true
}
}