| 1234567891011121314151617 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "declaration": true,
- "declarationDir": "./dist",
- "emitDeclarationOnly": true,
- "strict": true,
- "skipLibCheck": true,
- "types": ["bun-types"],
- "outDir": "./dist",
- "rootDir": "./src"
- },
- "include": ["src/**/*.ts"],
- "exclude": ["node_modules", "dist", "**/*.test.ts"]
- }
|