| { | |
| "ts-node": { | |
| "files": true | |
| }, | |
| "compilerOptions": { | |
| "outDir": "./built", | |
| "target": "esnext", | |
| "esModuleInterop": true, | |
| "jsx": "react", | |
| "declaration": true, | |
| "declarationDir": "./types", | |
| "emitDeclarationOnly": true, | |
| "strictNullChecks": true, | |
| "strictPropertyInitialization": true, | |
| "strictFunctionTypes": true, | |
| "strictBindCallApply": true, | |
| "noImplicitThis": true, | |
| "moduleResolution": "nodenext", | |
| "module": "nodenext", | |
| "baseUrl": ".", | |
| "types": [ | |
| "node", | |
| "mocha", | |
| "react" | |
| ], | |
| "typeRoots": ["node_modules/@types", "./vendor-types", "@adminjs/design-system/vendor-types"], | |
| "paths": { | |
| "react": ["node_modules/@types/react"] | |
| }, | |
| "skipLibCheck": true, | |
| "resolveJsonModule": true | |
| }, | |
| "include": [ | |
| "./vendor-types/**/*", | |
| "./src/**/*", | |
| "./spec/**/*" | |
| ], | |
| "exclude": [ | |
| "./node-modules", | |
| "./src/frontend/assets/**/*", | |
| "./src/frontend/components/**/*stories.tsx", | |
| ] | |
| } | |