tsconfig.json 730 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es2015",
  5. "noImplicitAny": false,
  6. "sourceMap": false,
  7. "experimentalDecorators": true,
  8. "emitDecoratorMetadata": true,
  9. "removeComments": true,
  10. "outDir": "./dist",
  11. "lib": [
  12. "dom",
  13. "es2015",
  14. "es2016",
  15. "es2017"
  16. ],
  17. "typeRoots": [
  18. "node_modules/sitemap/node_modules/@types",
  19. "node_modules/@types"
  20. ],
  21. "baseUrl": "./",
  22. "paths": {
  23. "@server/*": [ "server/*" ],
  24. "@shared/*": [ "shared/*" ]
  25. }
  26. },
  27. "exclude": [
  28. "server/tools/",
  29. "node_modules",
  30. "dist",
  31. "storage",
  32. "client",
  33. "test1",
  34. "test2",
  35. "test3",
  36. "test4",
  37. "test5",
  38. "test6"
  39. ]
  40. }