mirror of
https://github.com/qiutongxue/oba-live-tool.git
synced 2026-09-01 15:19:02 +08:00
33 lines
763 B
JSON
33 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": "./",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"#/*": ["electron/main/*"],
|
|
"shared/*": ["./shared/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
],
|
|
"include": ["src", "electron", "shared"]
|
|
}
|