generated from spencerbeggs/typescript-base
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
31 lines (31 loc) · 881 Bytes
/
tsconfig.json
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
31
{
"root": true,
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@base/app": ["lib/base/app"],
"@base/constructs": ["lib/base/constructs"],
"@base/stacks": ["lib/base/stacks"]
},
"typeRoots": ["./types", "./node_modules/@types"]
},
"ts-node": {
"require": ["source-map-support/register", "typescript-transform-paths/register"],
"paths": {
"@base/app": ["lib/base/app"],
"@base/constructs": ["lib/base/constructs"],
"@base/stacks": ["lib/base/stacks"]
}
},
"include": ["src/**/*.mts", "src/**/*.ts", "test/**/*.mts", "test/**/*.ts", "lib/**/*.mts", "lib/**/*.ts"],
"exclude": ["node_modules", "cdk.out", "coverage"]
}