Files
go_process_manager/resources/tsconfig.json
2025-08-13 21:39:13 +08:00

22 lines
500 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "dom", "dom.iterable", "scripthost"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": ["vitest/globals"]
}
}