tsconfig.json 631 B

123456789101112131415161718192021222324252627282930
  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": false,
  12. "stripInternal": true,
  13. "skipLibCheck": true,
  14. "resolveJsonModule": true,
  15. "pretty": true,
  16. "declaration": false,
  17. "noImplicitAny": false,
  18. "typeRoots": [
  19. "typings",
  20. "./node_modules/@types"
  21. ],
  22. "outDir": "dist",
  23. "rootDir": "src"
  24. },
  25. "exclude": [
  26. "dist",
  27. "node_modules",
  28. "test"
  29. ]
  30. }