1 | {
|
2 | "version": "2.0.0",
|
3 | "compilerOptions": {
|
4 | "declaration": true,
|
5 | "experimentalDecorators": true,
|
6 | "jsx": "react",
|
7 | "module": "commonjs",
|
8 | "moduleResolution": "node",
|
9 | "noFallthroughCasesInSwitch": true,
|
10 | "noImplicitAny": true,
|
11 | "noImplicitReturns": true,
|
12 | "noUnusedLocals": true,
|
13 | "noUnusedParameters": true,
|
14 | "outDir": "dist/",
|
15 | "removeComments": false,
|
16 | "sourceMap": false,
|
17 | "stripInternal": true,
|
18 | "target": "es5"
|
19 | },
|
20 | "include": [
|
21 | "src/**/*"
|
22 | ],
|
23 | "exclude": [
|
24 | "node_modules",
|
25 | "dist",
|
26 | "test"
|
27 | ]
|
28 | }
|