UNPKG

588 BJSONView Raw
1{
2 "compilerOptions": {
3 "jsx": "react",
4 "target": "es5",
5 "outDir": "dist",
6 "module": "esnext",
7 "moduleResolution": "node",
8 "strict": true,
9 "sourceMap": true,
10 "declaration": true,
11 "resolveJsonModule": true,
12 "skipLibCheck": true,
13 "declarationDir": "dist",
14 "lib": ["dom", "esnext"],
15 "allowSyntheticDefaultImports": true,
16 "typeRoots": ["./node_modules/@types"]
17 },
18 "include": [
19 "./index.ts",
20 "./src/**/*.ts",
21 "./types.d.ts",
22 "./test/**/*.ts",
23 "./js/**/*.ts",
24 "./react/react.ts",
25 "./react/**/*.tsx"
26 ]
27}