-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
46 lines (46 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"baseUrl": ".",
"composite": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ESNext", "dom"],
"module": "CommonJS",
"allowJs": true,
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"preserveSymlinks": true,
"preserveWatchOutput": true,
"pretty": false,
"sourceMap": true,
"target": "es5",
"useUnknownInCatchVariables": false,
"rootDir": ".",
"paths": {
"@justaname.id/react": ["packages/@justaname.id/react/src/index.ts"],
"@justaname.id/sdk": ["packages/@justaname.id/sdk/src/index.ts"],
"@justaname.id/siwens": ["packages/@justaname.id/siwens/src/index.ts"],
"@justverified/plugin": ["packages/@justverified/plugin/src/index.ts"],
"@justweb3/ui": ["packages/@justweb3/ui/src/index.ts"],
"@justweb3/widget": ["packages/@justweb3/widget/src/index.ts"]
}
},
"exclude": [
"node_modules",
"**/node_modules/*",
"**/*/lib",
"**/*/lib.esm",
"**/*/dist",
"*.d.ts"
]
}