-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
32 lines (32 loc) · 1.07 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
{
"compileOnSave": false,
"compilerOptions": {
"types": ["node", "jest"],
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"declarationMap": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2016",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noPropertyAccessFromIndexSignature": false,
"baseUrl": ".",
"paths": {
"@raidguild/dm-graphql": ["libs/dm-graphql/src/index.ts"],
"@raidguild/dm-hooks": ["libs/dm-hooks/src/index.ts"],
"@raidguild/dm-types": ["libs/dm-types/src/index.ts"],
"@raidguild/dm-utils": ["libs/dm-utils/src/index.ts"],
"@raidguild/escrow-gql": ["libs/escrow-gql/src/index.ts"],
"@raidguild/escrow-hooks": ["libs/escrow-hooks/src/index.ts"],
"@raidguild/escrow-utils": ["libs/escrow-utils/src/index.ts"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts", "**/*.json"],
"exclude": ["node_modules", "tmp"]
}