tsconfig.json 618 B

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