You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
654B

  1. {
  2. "compilerOptions": {
  3. "emitDecoratorMetadata": true,
  4. "experimentalDecorators": true,
  5. "noImplicitAny": false,
  6. "suppressImplicitAnyIndexErrors": true,
  7. "target": "es6",
  8. "module": "es6",
  9. "moduleResolution": "node",
  10. "removeComments": true,
  11. "sourceMap": true,
  12. "outDir": "./dist",
  13. "noLib": false,
  14. "declaration": true,
  15. "lib": [ "es6", "dom" ],
  16. "typeRoots": [
  17. "node_modules/@types"
  18. ]
  19. },
  20. "exclude": [
  21. "node_modules",
  22. "dist"
  23. ],
  24. "filesGlob": [
  25. "./model/*.ts",
  26. "./api/*.ts"
  27. ]
  28. }