-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 905 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 905 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["es6", "esnext", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"outDir": "dist",
"typeRoots": ["node_modules/@types"],
"types": ["node", "jest"],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"importHelpers": true,
"paths": {
"@powerbotkit/consumer": ["./packages/consumer/lib"],
"@powerbotkit/consumer/*": ["./packages/consumer/lib/*"],
"@powerbotkit/core": ["./packages/core/lib/"],
"@powerbotkit/core/*": ["./packages/core/lib/*"],
"@powerbotkit/distributor": ["./packages/distributor/lib"],
"@powerbotkit/distributor/*": ["./packages/distributor/lib/*"],
}
}
}