-
Notifications
You must be signed in to change notification settings - Fork 28
/
tsconfig.json
41 lines (41 loc) · 1.03 KB
/
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
32
33
34
35
36
37
38
39
40
41
{
"exclude": ["example/**", "**/lib/**/*", "**/__tests__/**"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@draftbit/*": ["packages/*/src"]
},
"sourceMap": true,
"inlineSources": false,
"inlineSourceMap": false,
"composite": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"alwaysStrict": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2019"
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}