Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. {
  2. "compilerOptions": {
  3. // Target latest version of ECMAScript.
  4. "target": "esnext",
  5. // path to output directory
  6. "outDir": "./dist/",
  7. // enable strict null checks as a best practice
  8. "strictNullChecks": true,
  9. // Search under node_modules for non-relative imports.
  10. "moduleResolution": "node",
  11. // Process & infer types from .js files.
  12. "allowJs": true,
  13. // Don't emit; allow Babel to transform files.
  14. "noEmit": true,
  15. // Enable strictest settings like strictNullChecks & noImplicitAny.
  16. "strict": true,
  17. // Import non-ES modules as default imports.
  18. "esModuleInterop": true,
  19. // use typescript to transpile jsx to js
  20. "jsx": "react",
  21. "baseUrl": "./src",
  22. "lib": [
  23. "es2015",
  24. "dom.iterable",
  25. "es2016.array.include",
  26. "es2017.object",
  27. "dom"
  28. ],
  29. "module": "es6",
  30. "removeComments": true,
  31. "alwaysStrict": true,
  32. "allowUnreachableCode": false,
  33. "noImplicitAny": true,
  34. "noImplicitThis": true,
  35. "noUnusedLocals": true,
  36. "noUnusedParameters": true,
  37. "noImplicitReturns": true,
  38. "noFallthroughCasesInSwitch": true,
  39. "forceConsistentCasingInFileNames": true,
  40. "importHelpers": true
  41. },
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement