tsconfig.json 444 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "commonjs",
  5. "lib": ["ES2020"],
  6. "strict": true,
  7. "strictPropertyInitialization": false,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "outDir": "./dist",
  12. "rootDir": "./src",
  13. "emitDecoratorMetadata": true,
  14. "experimentalDecorators": true
  15. },
  16. "include": ["src/**/*"],
  17. "exclude": ["node_modules"]
  18. }