Skip to content

Instantly share code, notes, and snippets.

@yehudamakarov
Last active May 3, 2019 02:07
Show Gist options
  • Save yehudamakarov/30fc31800aaa4f0e17c38041d576ea95 to your computer and use it in GitHub Desktop.
Save yehudamakarov/30fc31800aaa4f0e17c38041d576ea95 to your computer and use it in GitHub Desktop.
[Config Files] config settings that may need to be used in various places
{
"ignore": ["**/*.test.ts", "**/*.spec.ts", ".git", "node_modules"],
"watch": ["src"],
"exec": "npm start",
// probably just extension...
"ext": "ts"
}
// and in package.json:
{
...
"scripts": {
"start": "ts-node src/server.ts",
"dev": "./node_modules/nodemon/bin/nodemon.js",
"test": "jest",
"test:watch": "jest --watch"
},
...
}
{
"compilerOptions": {
"target": "es2015",
"jsx": "react",
"noEmit": true,
"moduleResolution": "node",
"esModuleInterop": true
},
"exclude": [
"node_modules",
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment