tsconfig.json 414 B

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