| 1234567891011121314151617 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "commonjs",
- "lib": ["ES2020"],
- "declaration": true,
- "outDir": "dist",
- "rootDir": "src",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules", "dist"]
- }
|