newsnow/tsconfig.node.json

13 lines
298 B
JSON
Raw Normal View History

2024-09-26 11:30:21 +08:00
{
2024-09-29 20:57:24 +08:00
"extends": ["./tsconfig.base.json", "./dist/.nitro/types/tsconfig.json"],
2024-09-26 11:30:21 +08:00
"compilerOptions": {
2024-09-26 19:16:42 +08:00
"lib": ["ES2020"],
"baseUrl": ".",
"paths": {
"#/*": ["server/*"],
"@shared/*": ["shared/*"]
}
2024-09-26 11:30:21 +08:00
},
2024-10-01 00:08:07 +08:00
"include": ["server", "*.config.*", "shared", "test", "scripts"]
2024-09-26 11:30:21 +08:00
}