UNPKG

963 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "es2017",
4 "lib": [
5 // Required for async iterators/generators:
6 "esnext.asynciterable",
7 // These are the defaults for "target": "es2017", but they have to be explicitly specified if we want to add anything to "lib":
8 "es2017",
9 "dom",
10 "dom.iterable",
11 "scripthost"
12 ],
13 "module": "commonjs",
14 "stripInternal": false,
15 "declaration": true,
16 "strict": true,
17 "noImplicitAny": true,
18 "strictNullChecks": true,
19 "noImplicitThis": true,
20 "alwaysStrict": true,
21 "noUnusedLocals": false,
22 "noUnusedParameters": true,
23 "noImplicitReturns": true,
24 "noImplicitOverride": true,
25 "noFallthroughCasesInSwitch": false,
26 "experimentalDecorators": true,
27 "skipLibCheck": true,
28 "sourceMap": true,
29 "inlineSources": true,
30 "declarationMap": true,
31 "jsx": "react",
32 "forceConsistentCasingInFileNames": true,
33 "incremental": true
34 }
35}
\No newline at end of file