electron-vite-react/tsconfig.json

22 lines
559 B
JSON
Raw Normal View History

2021-11-01 12:17:56 +08:00
{
"compilerOptions": {
"target": "ESNext",
2022-06-05 08:08:12 +08:00
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
2021-11-01 12:17:56 +08:00
"skipLibCheck": true,
2022-06-05 08:08:12 +08:00
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
2021-11-01 12:17:56 +08:00
"moduleResolution": "Node",
"resolveJsonModule": true,
2022-06-05 08:08:12 +08:00
"isolatedModules": true,
"noEmit": true,
2021-11-01 16:49:28 +08:00
"jsx": "react-jsx"
2022-06-05 08:08:12 +08:00
},
2022-08-29 09:26:32 +08:00
"include": ["src"],
2022-06-05 08:08:12 +08:00
"references": [{ "path": "./tsconfig.node.json" }]
}