tsconfig.json 683 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "importHelpers": true,
  6. "outDir": "./dist/out-tsc",
  7. "sourceMap": true,
  8. "declaration": false,
  9. "moduleResolution": "node",
  10. "emitDecoratorMetadata": true,
  11. "experimentalDecorators": true,
  12. "strict": true,
  13. "noImplicitAny": false,
  14. "strictPropertyInitialization": false,
  15. "target": "es5",
  16. "skipLibCheck": true,
  17. "typeRoots": [
  18. "node_modules/@types",
  19. "./typings"
  20. ],
  21. "lib": [
  22. "es2017",
  23. "dom",
  24. "esnext.asynciterable"
  25. ],
  26. "paths": {
  27. "shared/*": ["../common/lib/*"],
  28. "@vendure/admin-ui/src/*": ["./src/*"]
  29. }
  30. }
  31. }