electron-vite-react/tsconfig.json

28 lines
659 B
JSON
Raw Normal View History

2021-11-01 12:17:56 +08:00
{
"compilerOptions": {
2022-06-07 02:23:07 +08:00
"baseUrl": ".",
2021-11-01 12:17:56 +08:00
"target": "ESNext",
2022-06-05 08:08:12 +08:00
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
2022-06-07 02:23:07 +08:00
"paths": {
"@/*": ["src/*"],
"styles/*": ["src/assets/styles/*"]
},
2022-06-05 08:08:12 +08:00
"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" }]
}
2022-06-07 02:23:07 +08:00