forked from connectrpc/connect-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
32 lines (31 loc) · 881 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
32
{
"compilerOptions": {
"target": "es2017",
"lib": [
"ES2017",
// DOM for the fetch and streams API
"DOM",
// ES2018.AsyncIterable for AsyncIterator
"ES2018.AsyncIterable"
],
"esModuleInterop": false,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
// We need node's module resolution, so we do not have to skip lib checks
"moduleResolution": "Node16",
"module": "Node16",
"verbatimModuleSyntax": true,
"skipLibCheck": false
}
}