Advertisement
Guest User

Untitled

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