Skip to content

Instantly share code, notes, and snippets.

@thomasswilliams
Created November 18, 2019 10:44
Show Gist options
  • Save thomasswilliams/4e56d8ba7d2396af4fa56006e30be47c to your computer and use it in GitHub Desktop.
Save thomasswilliams/4e56d8ba7d2396af4fa56006e30be47c to your computer and use it in GitHub Desktop.
Express & TypeScript Pedals API base, Nov 2019 - tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*"]
}
@thomasswilliams
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment