Files
oba-live-tool/tsconfig.json
T
2025-11-25 19:37:19 +08:00

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"]
}