electron-vite-react/tsconfig.json

15 lines
322 B
JSON
Raw Normal View History

2021-11-01 12:17:56 +08:00
{
"extends": "./paths.json",
"compilerOptions": {
"target": "ESNext",
2021-11-01 16:49:28 +08:00
"module": "ESNext",
2021-11-01 12:17:56 +08:00
"allowJs": true,
"skipLibCheck": true,
2021-11-01 16:49:28 +08:00
"skipDefaultLibCheck": true,
2021-11-01 12:17:56 +08:00
"esModuleInterop": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
2021-11-01 16:49:28 +08:00
"strict": true,
"jsx": "react-jsx"
2021-11-01 12:17:56 +08:00
}
}