-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (30 loc) · 999 Bytes
/
tsconfig.base.json
File metadata and controls
30 lines (30 loc) · 999 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["es2020", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@abgov/docs": ["libs/docs/src/index.ts"],
"@abgov/angular-components": ["libs/angular-components/src/index.ts"],
"@abgov/react-components": ["libs/react-components/src/index.ts"],
"@abgov/react-components/experimental": [
"libs/react-components/src/experimental/index.ts"
],
"@abgov/style": ["dist/libs/web-components/index.css"],
"@abgov/ui-components-common": ["libs/common/src/index.ts"],
"@abgov/web-components": ["dist/libs/web-components/index.js"]
}
},
"exclude": ["node_modules", "tmp"]
}