dyomedea/tsconfig.json

17 lines
388 B
JSON
Raw Permalink 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",
"types": ["vite/client", "vite-plugin-solid-svg/types"],
"rootDirs": ["src"]
2022-11-26 21:04:08 +00:00
},
"include": ["src"]
2022-11-25 15:33:59 +00:00
}