1
0

tsconfig.json 710 B

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