-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
24 lines (24 loc) · 727 Bytes
/
tsconfig.base.json
File metadata and controls
24 lines (24 loc) · 727 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
{
"compileOnSave": false,
"compilerOptions": {
"composite": true,
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": false,
"target": "es2018",
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"@withease/factories": ["packages/factories/src/index.ts"],
"@withease/i18next": ["packages/i18next/src/index.ts"],
"@withease/redux": ["packages/redux/src/index.ts"],
"@withease/web-api": ["packages/web-api/src/index.ts"],
"@withease/contracts": ["packages/contracts/src/index.ts"]
}
},
"exclude": ["node_modules"]
}