-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
tsconfig.base.json
32 lines (32 loc) · 1.19 KB
/
tsconfig.base.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
32
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2021",
"module": "esnext",
"lib": ["es2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@nxrocks/common": ["packages/common/src/index.ts"],
"@nxrocks/common-cli": ["packages/common-cli/src/index.ts"],
"@nxrocks/common-jvm": ["packages/common-jvm/src/index.ts"],
"@nxrocks/common-jvm/testing": ["packages/common-jvm/testing/index.ts"],
"@nxrocks/common/testing": ["packages/common/testing/index.ts"],
"@nxrocks/nx-flutter": ["packages/nx-flutter/src/index.ts"],
"@nxrocks/nx-ktor": ["packages/nx-ktor/src/index.ts"],
"@nxrocks/nx-melos": ["packages/nx-melos/src/index.ts"],
"@nxrocks/nx-micronaut": ["packages/nx-micronaut/src/index.ts"],
"@nxrocks/nx-quarkus": ["packages/nx-quarkus/src/index.ts"],
"@nxrocks/nx-spring-boot": ["packages/nx-spring-boot/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}