-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
27 lines (27 loc) · 821 Bytes
/
tsconfig.node.json
File metadata and controls
27 lines (27 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "@tsed/typescript/tsconfig.node.json",
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"paths": {
"@tsed/cli": ["./packages/cli/src/index.ts"],
"@tsed/cli-core": ["./packages/cli-core/src/index.ts"],
"@tsed/cli-mcp": ["./packages/cli-mcp/src/index.ts"],
"@tsed/cli-prompts": ["./packages/cli-prompts/src/index.ts"],
"@tsed/cli-tasks": ["./packages/cli-tasks/src/index.ts"]
}
},
"include": ["./packages/*/src/**/*.ts", "**/tsup.config.ts", "**/vite.config.mts"],
"exclude": [
"./packages/*/src/**/*.spec.ts",
"./packages/**/project-name/**/*.ts",
"**/__tests__/**/*.ts",
"**/__mock__/**/*.ts",
"**/helpers/**/*.ts",
"node_modules",
"**/lib/**",
"packages/*/templates/**",
"**/barrels/**",
"**/docs/**"
]
}