forked from ParabolInc/parabol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
31 lines (31 loc) · 944 Bytes
/
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
{
"compilerOptions": {
// allowJs causes some bugs using ts-loader, if we decide to use that in the future
// "allowJs": true,
"checkJs": false,
// composite is just not worth it. the savings come from persisting files (.d + maps) and it's buggy as heck
// "composite": true,
"target": "es2019",
"module": "commonjs",
"jsx": "react",
"importHelpers": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"pretty": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noUncheckedIndexedAccess": true,
"noErrorTruncation": true
}
}