tsconfig.json 646 B

123456789101112131415161718192021222324252627282930
  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/*": ["../packages/common/lib/*"]
  28. }
  29. }
  30. }