UNPKG

621 BJSONView Raw
1{
2 "compilerOptions": {
3 "alwaysStrict": true,
4 "forceConsistentCasingInFileNames": true,
5 "noFallthroughCasesInSwitch": true,
6 "noImplicitReturns": true,
7 "noUnusedLocals": true,
8 "noUnusedParameters": true,
9 "noImplicitAny": false,
10 "noImplicitThis": false,
11 "strictNullChecks": false,
12 "declaration": true,
13 "jsx": "react",
14 "lib": [
15 "es6",
16 "dom",
17 "scripthost"
18 ],
19 "module": "commonjs",
20 "outDir": "dist/src",
21 "removeComments": true,
22 "sourceMap": true,
23 "target": "es5",
24 "experimentalDecorators": true
25 },
26 "include": [
27 "src"
28 ]
29}