ueli/tsconfig.node.json

17 lines
416 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"noUnusedLocals": true,
"paths": {
"@common/*": ["./src/common/*"],
"@Core/*": ["./src/main/Core/*"]
},
"resolveJsonModule": true,
"rootDir": "./src",
"skipLibCheck": true
}
}