tsconfig.base.json 430 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "Node16",
  5. "moduleResolution": "Node16",
  6. "lib": ["ES2022"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "resolveJsonModule": true,
  12. "declaration": true,
  13. "declarationMap": true,
  14. "sourceMap": true,
  15. "composite": true,
  16. "outDir": "dist",
  17. "rootDir": "src"
  18. }
  19. }