| 1 |
{ |
| 2 |
"compilerOptions": { |
| 3 |
"target": "es2019", |
| 4 |
"module": "esnext", |
| 5 |
"moduleResolution": "node", |
| 6 |
"allowJs": true, |
| 7 |
"strict": true, |
| 8 |
"esModuleInterop": true, |
| 9 |
"skipLibCheck": true, |
| 10 |
"jsx": "react", |
| 11 |
"jsxFactory": "createElement", |
| 12 |
"jsxFragmentFactory": "Fragment", |
| 13 |
"rootDir": "src", |
| 14 |
"outDir": "build-module", |
| 15 |
"declaration": true, |
| 16 |
"declarationMap": true, |
| 17 |
"declarationDir": "./build-types", |
| 18 |
"resolveJsonModule": true, |
| 19 |
"typeRoots": [ "./typings", "./node_modules/@types" ] |
| 20 |
}, |
| 21 |
"exclude": [ |
| 22 |
"node_modules", |
| 23 |
"**/stories", |
| 24 |
"**/build", |
| 25 |
"**/build-module", |
| 26 |
"**/build-types", |
| 27 |
"**/test/*", |
| 28 |
"**/jest.config.js", |
| 29 |
"**/jest-preset.js", |
| 30 |
"**/webpack.*.js", |
| 31 |
"**/babel.config.js" |
| 32 |
], |
| 33 |
"include": [ "**/*.d.ts", "src/**/*", "src/**/*.json" ] |
| 34 |
} |
| 35 |
|