UNPKG

838 BJSONView Raw
1{
2 "compilerOptions": {
3 "outDir": "./lib",
4 "target": "es5",
5 "inlineSourceMap": true,
6 "module": "commonjs",
7 "moduleResolution": "node",
8 "isolatedModules": false,
9 "jsx": "react",
10 "experimentalDecorators": true,
11 "emitDecoratorMetadata": true,
12 "declaration": true,
13 "removeComments": true,
14 "noLib": false,
15 "skipLibCheck": true,
16 "preserveConstEnums": true,
17 "suppressImplicitAnyIndexErrors": true,
18 "pretty": true,
19 "strictNullChecks": true,
20 "noImplicitAny": true,
21 "noImplicitReturns": true,
22 "noFallthroughCasesInSwitch": true,
23 "skipDefaultLibCheck": true,
24 "lib": [
25 "es5",
26 "es6",
27 "es7",
28 "dom"
29 ]
30 },
31 "include": [
32 "src/**/*.d.ts",
33 "src/**/*.ts",
34 "src/**/*.tsx"
35 ],
36 "exclude": [
37 "node_modules",
38 "lib"
39 ]
40}