Files
UnrealEngine/Engine/Source/Programs/Horde/HordeDashboard/tsconfig.json
2025-05-18 13:04:45 +08:00

40 lines
860 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"module": "ESNext",
"skipLibCheck": true,
"experimentalDecorators": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"horde/*" : ["./src/*"],
"hordePlugins": ["./plugins"],
"hordePlugins/*": ["./plugins/*"]
},
/* Linting */
"strict": false,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true
/*
"noUnusedLocals": true,
"noUnusedParameters": true,
*/
},
"include": ["src", "plugins"],
"references": [{ "path": "./tsconfig.node.json" }]
}