newsnow/tsconfig.node.json

13 lines
291 B
JSON
Raw Normal View History

2024-09-26 11:30:21 +08:00
{
2024-10-03 13:16:14 +08:00
"extends": ["./tsconfig.base.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-25 03:06:03 +08:00
"include": ["server", "*.config.*", "shared", "test", "scripts", "tools", "dist/.nitro/types"]
2024-09-26 11:30:21 +08:00
}