|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
3 | | - "allowJs": true, |
| 3 | + "target": "esnext", |
4 | 4 | "allowSyntheticDefaultImports": true, |
5 | | - "esModuleInterop": true, |
6 | | - "isolatedModules": true, |
| 5 | + "outDir": "dist", |
| 6 | + "module": "commonjs", |
7 | 7 | "jsx": "react", |
8 | | - "lib": ["es6"], |
9 | | - "moduleResolution": "node", |
10 | | - "noEmit": true, |
11 | 8 | "strict": true, |
12 | | - "target": "esnext", |
| 9 | + "noImplicitAny": true, |
| 10 | + "strictNullChecks": true, |
| 11 | + "strictFunctionTypes": true, |
| 12 | + "strictBindCallApply": true, |
| 13 | + "strictPropertyInitialization": true, |
| 14 | + "noImplicitThis": true, |
| 15 | + "alwaysStrict": true, |
| 16 | + "noUnusedLocals": true, |
| 17 | + "noUnusedParameters": true, |
| 18 | + "noImplicitReturns": true, |
| 19 | + "noFallthroughCasesInSwitch": true, |
13 | 20 | "baseUrl": "./src", |
| 21 | + "esModuleInterop": true, |
| 22 | + "experimentalDecorators": true, |
| 23 | + "emitDecoratorMetadata": true, |
| 24 | + "noEmit": true, |
| 25 | + "allowJs": true, |
| 26 | + "lib": ["es6"], |
| 27 | + "types": ["react-native"], |
| 28 | + "isolatedModules": true, |
| 29 | + "moduleResolution": "node", |
14 | 30 | "paths": { |
15 | 31 | "react-gondola": ["../../src"] |
16 | 32 | } |
17 | 33 | }, |
| 34 | + "include": ["./src"], |
18 | 35 | "exclude": [ |
| 36 | + "../node_modules", |
19 | 37 | "node_modules", |
20 | 38 | "babel.config.js", |
21 | 39 | "metro.config.js", |
22 | | - "jest.config.js" |
| 40 | + "jest.config.js", |
| 41 | + "**/__tests__/*" |
23 | 42 | ] |
24 | 43 | } |
0 commit comments