tsconfig.json 533 B

123456789101112131415161718192021222324
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "target": "es2018",
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "experimentalDecorators": true,
  8. "emitDecoratorMetadata": true,
  9. "inlineSourceMap":true,
  10. "noImplicitThis": true,
  11. "noUnusedLocals": true,
  12. "stripInternal": true,
  13. "skipLibCheck": true,
  14. "pretty": true,
  15. "declaration": true,
  16. "typeRoots": [ "./typings", "./node_modules/@types"],
  17. "outDir": "dist"
  18. },
  19. "exclude": [
  20. "dist",
  21. "node_modules",
  22. "test"
  23. ]
  24. }