-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
30 lines (30 loc) · 756 Bytes
/
tsconfig.node.json
File metadata and controls
30 lines (30 loc) · 756 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
28
29
30
{
"extends": "@tsed/typescript/tsconfig.node.json",
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"paths": {
"@tsed/logger": ["./packages/logger/src/index.ts"],
"@tsed/logger/layouts/*": ["./packages/logger/src/layouts/components/*"],
"@tsed/logger-std": ["./packages/logger-std/src/index.ts"]
}
},
"include": [
"./packages/*/src/**/*.ts",
"./packages/*/*/src/**/*.ts",
"**/vite.config.mts"
],
"exclude": [
"./docs/**",
"./packages/*/src/**/*.spec.ts",
"./packages/*/*/src/**/*.spec.ts",
"**/__tests__/**/*.ts",
"**/__mock__/**/*.ts",
"**/helpers/**/*.ts",
"node_modules",
"**/generate_code/**",
"**/generated/**",
"**/docs/**",
"**/lib/**"
]
}