-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (35 loc) · 1.08 KB
/
tsconfig.base.json
File metadata and controls
35 lines (35 loc) · 1.08 KB
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
33
34
35
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["es2023", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@code-pushup/bundle-stats-plugin": [
"packages/plugin-bundle-stats/src/index.ts"
],
"@code-pushup/knip-plugin": ["packages/plugin-knip/src/index.ts"],
"@code-pushup/stylelint-plugin": [
"packages/plugin-stylelint/src/index.ts"
],
"@code-pushup/test-nx-utils": ["testing/test-nx-utils/src/index.ts"],
"@code-pushup/test-setup": ["testing/test-setup/src/index.ts"],
"@code-pushup/test-setup-config": [
"testing/test-setup-config/src/index.ts"
],
"@code-pushup/test-utils": ["testing/test-utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}