tsconfig.json 474 B

12345678910111213141516171819202122
  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. "types": [
  16. "@types/node"
  17. ]
  18. },
  19. "include": [
  20. "src/**/*"
  21. ]
  22. }