-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
35 lines (35 loc) · 1.42 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
31
32
33
34
35
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@app-gov/node/utils": ["libs/node/utils/src/index.ts"],
"@app-gov/service/cennznet": ["libs/service/cennznet/src/index.ts"],
"@app-gov/service/discord": ["libs/service/discord/src/index.ts"],
"@app-gov/service/env-vars": ["libs/service/env-vars/src/index.ts"],
"@app-gov/service/mongodb": ["libs/service/mongodb/src/index.ts"],
"@app-gov/service/pinata": ["libs/service/pinata/src/index.ts"],
"@app-gov/service/rabbitmq": ["libs/service/rabbitmq/src/index.ts"],
"@app-gov/service/relayer": ["libs/service/relayer/src/index.ts"],
"@app-gov/web/bitmaps": ["libs/web/bitmaps/src/index.ts"],
"@app-gov/web/components": ["libs/web/components/src/index.ts"],
"@app-gov/web/hooks": ["libs/web/hooks/src/index.ts"],
"@app-gov/web/providers": ["libs/web/providers/src/index.ts"],
"@app-gov/web/utils": ["libs/web/utils/src/index.ts"],
"@app-gov/web/vectors": ["libs/web/vectors/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}