-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 939 Bytes
/
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
{
"compilerOptions": {
"target": "ES2018",
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"paths": {
"clerc": ["./packages/clerc/src/index.ts"],
"@clerc/core": ["./packages/core/src/index.ts"],
"@clerc/plugin-help": ["./packages/plugin-help/src/index.ts"],
"@clerc/plugin-not-found": ["./packages/plugin-not-found/src/index.ts"],
"@clerc/plugin-completions": [
"./packages/plugin-completions/src/index.ts"
],
"@clerc/plugin-strict-flags": [
"./packages/plugin-strict-flags/src/index.ts"
],
"@clerc/plugin-version": ["./packages/plugin-version/src/index.ts"],
"@clerc/plugin-friendly-error": [
"./packages/plugin-friendly-error/src/index.ts"
],
"@clerc/utils": ["./packages/utils/src/index.ts"]
}
}
}