Skip to content

Instantly share code, notes, and snippets.

@seanpmaxwell
Last active May 29, 2019 14:52
Show Gist options
  • Save seanpmaxwell/2e9012336985ddd73f37dbc591431f19 to your computer and use it in GitHub Desktop.
Save seanpmaxwell/2e9012336985ddd73f37dbc591431f19 to your computer and use it in GitHub Desktop.
ExpressTypeScript/tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"strict": true,
"baseUrl": "./",
"outDir": "build",
"removeComments": true,
"experimentalDecorators": true,
"target": "es6",
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"importHelpers": true,
"types": [
"node"
],
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"./src/public/"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment