dyomedea/tsconfig.json

17 lines
359 B
JSON
Raw Normal View History

2022-11-25 15:33:59 +00:00
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
2022-11-26 21:04:08 +00:00
"allowJs": true,
2022-11-25 15:33:59 +00:00
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
2022-11-26 21:04:08 +00:00
"types": ["vite/client"],
"rootDirs": ["src"],
},
"include": ["src"],
2022-11-25 15:33:59 +00:00
}