electron-vite-react/tsconfig.json

28 lines
654 B
JSON
Raw Permalink 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,
2022-12-30 10:52:30 +08:00
"jsx": "react-jsx",
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
]
},
2022-06-05 08:08:12 +08:00
},
"include": ["src", "electron"],
2022-06-05 08:08:12 +08:00
"references": [{ "path": "./tsconfig.node.json" }]
}