UNPKG

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