Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. //tsconfig.json
  2. {
  3. "compilerOptions": {
  4. "baseUrl": ".",
  5. "target":"es6",
  6. "module":"commonjs",
  7. "noImplicitAny": false,
  8. "removeComments": true,
  9. "preserveConstEnums": true,
  10. "sourceMap": true,
  11. "outDir": "dist",
  12. "moduleResolution": "node",
  13. "allowJs": false,
  14. "allowSyntheticDefaultImports": false,
  15. "esModuleInterop": false,
  16. "jsx": "react"
  17. },
  18. "include": [
  19. "web/**/*",
  20. "logger/**/*",
  21. "controller/**/*",
  22. "config/**/*",
  23. "**/*.ts"
  24.  
  25. ]
  26. }
  27.  
  28. // VS Code launch.json
  29. ...
  30. {
  31. "type": "node",
  32. "request": "launch",
  33. "name": "Launch Program",
  34. "program": "${workspaceFolder}/app.js",
  35. "console": "integratedTerminal",
  36. "outFiles": ["${workspaceFolder}/dist"]
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement