tsconfig.json 499 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "es2018",
  4. "module": "commonjs",
  5. "strict": true,
  6. "esModuleInterop": true,
  7. "skipLibCheck": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "moduleResolution": "Node",
  10. "outDir": "dist",
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "strictPropertyInitialization": false,
  14. "noImplicitAny": false,
  15. "declaration": true,
  16. "types": [
  17. "@types/node"
  18. ]
  19. },
  20. "include": [
  21. "src/**/*"
  22. ]
  23. }