forked from PolymeshAssociation/polymesh-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.12 KB
/
tsconfig.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
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"outDir": "dist",
"baseUrl": ".",
"paths": {
"~/app.module": ["src/app.module"],
"~/confidential*": ["src/confidential*"],
"~/extended*": ["src/extended*"],
"~/middleware/*": ["src/confidential-middleware/*"],
"~/test-utils/*": ["src/test-utils/*"],
"~/polymesh/*": ["src/polymesh/*"],
"~/transactions/*": ["src/transactions/*"],
"~/polymesh-rest-api/*": ["src/polymesh-rest-api/*"],
"~/*": ["src/polymesh-rest-api/src/*"]
},
"plugins": [
{
"transform": "@zerollup/ts-transform-paths",
"exclude": ["*"]
}
],
"target": "es6",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"removeComments": true,
"sourceMap": true,
"strict": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"lib": ["es2017", "dom"],
"typeRoots": ["./node_modules/@types", "./src/typings"]
}
}