-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtsconfig.spec.json
More file actions
20 lines (20 loc) · 850 Bytes
/
tsconfig.spec.json
File metadata and controls
20 lines (20 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "@tsed/typescript/tsconfig.node.json",
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"composite": false,
"declarationMap": false,
"types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"],
"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-testing": ["./packages/cli-testing/src/index.ts"],
"@tsed/cli-prompts": ["./packages/cli-prompts/src/index.ts"],
"@tsed/cli-tasks": ["./packages/cli-tasks/src/index.ts"]
}
},
"include": ["vitest.*.mts", "**/vitest.*.mts", "**/*.ts"],
"exclude": ["dist", "**/lib/**", "packages/*/templates/**", "**/barrels/**", "./packages/**/project-name/**/*.ts", "**/docs/**"]
}