Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. {
  2. "compilerOptions": {
  3. "lib": ["es5", "es6"],
  4. "target": "es6",
  5. "allowJs": true,
  6. "module": "commonjs",
  7. "moduleResolution": "node",
  8. "outDir": "./dist",
  9. "removeComments": true,
  10. "importHelpers": true,
  11. "strict": true,
  12. "strictPropertyInitialization": false,
  13. "emitDecoratorMetadata": true,
  14. "experimentalDecorators": true,
  15. "typeRoots": ["node_modules/@types"],
  16. "esModuleInterop": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "resolveJsonModule": true,
  19. "sourceMap": true,
  20. "baseUrl": "./src",
  21. "paths": {
  22. "@": ["./"],
  23. "@/*": ["./*"]
  24. }
  25. },
  26. "include": ["./src/**/*"],
  27. "exclude": ["node_modules", "**/*.spec.ts"]
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement