UNPKG

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