forked from push-based/nx-verdaccio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
30 lines (30 loc) · 1.06 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2021",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@push-based/cli": ["projects/cli/src/index.ts"],
"@push-based/core": ["examples/projects/core/src/index.ts"],
"@push-based/models": ["examples/projects/models/src/index.ts"],
"@push-based/nx-verdaccio": ["projects/nx-verdaccio/src/index.ts"],
"@push-based/plugin-1": ["projects/plugin-1/src/index.ts"],
"@push-based/test-nx-utils": ["testing/test-nx-utils/src/index.ts"],
"@push-based/test-setup": ["testing/test-setup/src/index.ts"],
"@push-based/test-utils": ["testing/test-utils/src/index.ts"],
"@push-based/utils": ["examples/projects/utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}