Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. {
  2. "compilerOptions": {
  3. "module": "esnext",
  4. "moduleResolution": "node",
  5. "target": "es6",
  6. "lib": ["dom", "esnext"],
  7. "pretty": true,
  8. "sourceMap": true,
  9. "outDir": "./dist",
  10. "emitDecoratorMetadata": true,
  11. "experimentalDecorators": true,
  12. "alwaysStrict": true,
  13. "allowJs": true,
  14. "skipLibCheck": true,
  15. "esModuleInterop": true,
  16. "allowSyntheticDefaultImports": true,
  17. "strict": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "resolveJsonModule": true,
  20. "isolatedModules": true,
  21. "noEmit": true,
  22. "jsx": "preserve"
  23. },
  24. "include": ["src/**/*.ts", "__tests__/**/*.ts"],
  25. "exclude": ["node_modules"]
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement