tsconfig.node.json 554 B

123456789101112131415161718192021
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "strict": true,
  5. "target": "ES2022",
  6. "module": "commonjs",
  7. "lib": ["ES2022"],
  8. "outDir": "./dist",
  9. "declaration": true,
  10. "declarationMap": true,
  11. "sourceMap": true,
  12. "moduleResolution": "node",
  13. "esModuleInterop": true,
  14. "allowSyntheticDefaultImports": true,
  15. "skipLibCheck": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "resolveJsonModule": true,
  18. "experimentalDecorators": true,
  19. "emitDecoratorMetadata": true
  20. }
  21. }