Files
mutiny-web/tsconfig.json
2023-07-05 16:34:59 -05:00

25 lines
568 B
JSON

{
"include": [
"global.d.ts",
"src/**/*",
"src/routes/**/*",
"tailwind.config.cjs",
".eslintrc.cjs"
],
"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/*"]
}
}
}