UNPKG

740 BJSONView Raw
1{
2 "include": ["src", "types", "test"],
3 "compilerOptions": {
4 "target": "es5",
5 "module": "esnext",
6 "lib": ["dom", "esnext"],
7 "importHelpers": true,
8 "declaration": true,
9 "sourceMap": true,
10 "rootDir": "./",
11 "strict": true,
12 "noImplicitAny": true,
13 "strictNullChecks": true,
14 "strictFunctionTypes": true,
15 "strictPropertyInitialization": true,
16 "noImplicitThis": true,
17 "alwaysStrict": true,
18 "noUnusedLocals": true,
19 "noUnusedParameters": true,
20 "noImplicitReturns": true,
21 "noFallthroughCasesInSwitch": true,
22 "moduleResolution": "node",
23 "baseUrl": "./",
24 "paths": {
25 "*": ["src/*", "node_modules/*"]
26 },
27 "jsx": "react",
28 "esModuleInterop": true
29 }
30}