UNPKG

636 BJSONView Raw
1{
2 "compilerOptions": {
3 "declaration": true,
4 "lib": ["es2017", "dom"],
5 "jsx": "react",
6 "moduleResolution": "node",
7 // "allowSyntheticDefaultImports": true,
8 "esModuleInterop": true,
9 "downlevelIteration": true,
10 "noUnusedLocals": true,
11 "noUnusedParameters": true,
12 "outDir": "dist",
13 "declarationDir": "lib",
14 "emitDeclarationOnly": true,
15 "preserveConstEnums": true,
16 "removeComments": false,
17 "skipLibCheck": true,
18 "sourceMap": true,
19 "strict": true,
20 "typeRoots": ["src/types/", "node_modules/@types/"]
21 },
22 "include": ["src/**/*.ts", "src/**/*.tsx", "typings/**/*"]
23}