tsconfig.json 615 B

123456789101112131415161718192021222324252627
  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": true,
  17. "noImplicitAny": false,
  18. "typeRoots": [ "./typings", "./node_modules/@types"],
  19. "outDir": "dist",
  20. "rootDir": "src"
  21. },
  22. "exclude": [
  23. "dist",
  24. "node_modules",
  25. "test"
  26. ]
  27. }