Guest User

Untitled

a guest
Nov 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {
  2. "main": "./build/app.js",
  3. "types": "./build/app.d.ts",
  4. "scripts": {
  5. "start": "tsc && node build/app.js",
  6. "dev": "concurrently "tsc -w " "nodemon ./build/app.js"",
  7. "lint": "tslint ./src"
  8. },
  9. }
  10.  
  11. {
  12. "compilerOptions": {
  13. "target": "es6",
  14. "module": "commonjs",
  15. "outDir": "build",
  16. "sourceMap": true,
  17. "declaration": true,
  18. "moduleResolution": "node",
  19. "allowSyntheticDefaultImports": true,
  20. "experimentalDecorators": true,
  21. "baseUrl": "src",
  22. },
  23. "files": [
  24. "./node_modules/@types/node/index.d.ts"
  25. ],
  26. "include": [
  27. "src/**/*.ts"
  28. ]
  29. }
Add Comment
Please, Sign In to add comment