tsconfig.json 364 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": true,
  5. "removeComments": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "target": "ESNext",
  9. "sourceMap": true,
  10. "outDir": "./dist",
  11. "baseUrl": "./",
  12. "incremental": true,
  13. "skipLibCheck": true,
  14. },
  15. "exclude": ["node_modules", "dist"],
  16. }