-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.base.json
30 lines (30 loc) · 1.02 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": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@lumeweb/libs5": ["libs/libs5/src/index.ts"],
"@lumeweb/libs5-crypto": ["libs/libs5-crypto/src/index.ts"],
"@lumeweb/libs5-encoding": ["libs/libs5-encoding/src/index.ts"],
"@lumeweb/libs5-metadata": ["libs/libs5-metadata/src/index.ts"],
"@lumeweb/portal-dashboard/*": ["libs/portal-dashboard/src/*"],
"@lumeweb/portal-admin/*": ["libs/portal-admin/src/*"],
"@lumeweb/portal-sdk": ["libs/portal-sdk/src/index.ts"],
"portal-shared": ["libs/portal-shared/src/index.ts"],
"@lumeweb/s5-js": ["libs/s5-js/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}