forked from milieuinfo/uigov-web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
27 lines (27 loc) · 971 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2019",
"module": "esnext",
"lib": ["es2019", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@domg-wc/common-utilities": ["libs/common/utilities/src/index.ts"],
"@domg-wc/components": ["libs/components/src/index.ts"],
"@domg-wc/elements": ["libs/elements/src/index.ts"],
"@domg-wc/map": ["libs/map/src/index.ts"],
"@domg-wc/sections": ["libs/sections/src/index.ts"],
"@domg-wc/test-support": ["libs/support/test-support/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}