newsnow/tsconfig.node.json
2024-10-03 13:16:14 +08:00

13 lines
261 B
JSON

{
"extends": ["./tsconfig.base.json"],
"compilerOptions": {
"lib": ["ES2020"],
"baseUrl": ".",
"paths": {
"#/*": ["server/*"],
"@shared/*": ["shared/*"]
}
},
"include": ["server", "*.config.*", "shared", "test", "scripts"]
}