| { | |
| "include": [ | |
| "packages/core/test/setup.ts", | |
| "packages/*/src/**/*", | |
| "targets/*/src/**/*", | |
| "packages/types/*", | |
| "**/*.test.ts", | |
| "targets/zdog/@types/**/*" | |
| ], | |
| "exclude": [ | |
| "packages/*/src/types/**/*", | |
| "targets/*/src/types/**/*", | |
| "docs/**/*" | |
| ], | |
| "compilerOptions": { | |
| "target": "ES2020", | |
| "module": "NodeNext", | |
| "lib": ["DOM", "ESNext"], | |
| "jsx": "react", | |
| "noEmit": true, | |
| "downlevelIteration": true, | |
| "strict": true, | |
| "noUnusedLocals": true, | |
| "moduleResolution": "nodenext", | |
| "baseUrl": "./", | |
| "allowSyntheticDefaultImports": true, | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "strictNullChecks": true | |
| } | |
| } | |