UNPKG

858 BJSONView Raw
1{
2 "compilerOptions": {
3 "target" : "es2019",
4 "module" : "commonjs",
5
6 "traceResolution" : false,
7 "noLib" : false,
8 "resolveJsonModule" : false,
9
10 "declaration" : true,
11 "declarationMap" : true,
12 "sourceMap" : true,
13 "skipLibCheck" : true,
14 "esModuleInterop" : true,
15
16 "emitDecoratorMetadata" : true,
17 "experimentalDecorators" : true,
18
19 "lib": [
20 "dom",
21 "esnext",
22 ],
23
24 "strict" : true,
25 "noEmitOnError" : true,
26 "noUnusedLocals" : true,
27 "noImplicitReturns" : true,
28 "noFallthroughCasesInSwitch" : true,
29 "strictNullChecks" : true,
30 "noImplicitAny" : true,
31 "noUnusedParameters" : true,
32 "noImplicitThis" : true,
33 },
34}