Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "commonjs",
  5. "lib": ["es6", "dom"],
  6. "allowJs": false,
  7. "outDir": "./dist",
  8. "declaration": true,
  9. "removeComments": true,
  10. "downlevelIteration": true,
  11. "strict": true,
  12. "strictNullChecks": true,
  13. "strictFunctionTypes": true,
  14. "strictPropertyInitialization": true,
  15. "noImplicitThis": true,
  16. "noImplicitAny": false,
  17. "alwaysStrict": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "moduleResolution": "node",
  21. "allowSyntheticDefaultImports": true,
  22. "listEmittedFiles": true,
  23. "pretty": true,
  24. "diagnostics": true
  25. },
  26. "exclude": ["build", "test/**/*"]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement