-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
30 lines (25 loc) · 898 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
{
"compilerOptions": {
/* Target >= ES 6 required to cleanly inherit from the built-in Error class, see NoElementError. */
"target": "ES6",
"module": "commonjs",
"lib": [
"es6",
"esnext.asynciterable",
"es2015.symbol.wellknown"
],
"inlineSourceMap": true, /* For Instanbul code coverage */
"downlevelIteration": true,
"strict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"typeRoots": [
"node_modules/@types",
"examples/node_modules/@types"
]
}
}