Skip to content

Instantly share code, notes, and snippets.

@seanpmaxwell
Last active May 29, 2019 05:04
Show Gist options
  • Select an option

  • Save seanpmaxwell/b5bd528d534d3f1e23c6d9c931483431 to your computer and use it in GitHub Desktop.

Select an option

Save seanpmaxwell/b5bd528d534d3f1e23c6d9c931483431 to your computer and use it in GitHub Desktop.
TypeScriptFullStackShell's tsconfig.json
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
"strict": true,
"baseUrl": "./",
"outDir": "build",
"sourceMap": true,
"removeComments": true,
"experimentalDecorators": true,
"target": "es6",
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"importHelpers": true,
"types": [
"node"
],
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"./src/**/*.test.ts",
"./src/public/"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment