tsconfig.json 411 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "declaration": true,
  7. "declarationMap": true,
  8. "sourceMap": true,
  9. "composite": true,
  10. "outDir": "./dist",
  11. "rootDir": "./src",
  12. "strict": true,
  13. "esModuleInterop": true,
  14. "skipLibCheck": true,
  15. "forceConsistentCasingInFileNames": true
  16. },
  17. "include": ["src/**/*.ts"]
  18. }