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",
|
2023-01-03 12:12:16 +00:00
|
|
|
"types": ["vite/client", "vite-plugin-solid-svg/types"],
|
|
|
|
"rootDirs": ["src"]
|
2022-11-26 21:04:08 +00:00
|
|
|
},
|
2023-01-03 12:12:16 +00:00
|
|
|
"include": ["src"]
|
2022-11-25 15:33:59 +00:00
|
|
|
}
|