tsconfig.json 638 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "lib": [
  4. "DOM",
  5. "WebWorker",
  6. "ES2015"
  7. ],
  8. "target": "ES2016",
  9. "allowSyntheticDefaultImports": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "moduleResolution": "node",
  13. "skipLibCheck": true,
  14. "strict": true,
  15. "paths": {
  16. "@shared/*": ["../shared/src/*"]
  17. },
  18. "baseUrl": "."
  19. },
  20. "include": [
  21. "src/**/*"
  22. ],
  23. "exclude": [
  24. "node_modules"
  25. ],
  26. "references": [
  27. {
  28. "path": "../shared"
  29. }
  30. ]
  31. }