Skip to content

Instantly share code, notes, and snippets.

@Pierre-RA
Created October 4, 2017 13:03
Show Gist options
  • Save Pierre-RA/70ecb1870752f780fa9f387271d5adf9 to your computer and use it in GitHub Desktop.
Save Pierre-RA/70ecb1870752f780fa9f387271d5adf9 to your computer and use it in GitHub Desktop.
{
"files": [
"server/server.ts"
],
"include": [
"server/**/*.ts"
],
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"target": "es6",
"outDir": "dist",
"rootDir": "server",
"sourceMap": true,
"baseUrl": ".",
"moduleResolution": "node",
"removeComments": true,
"typeRoots": [ "node_modules/@types" ],
"paths": {
"*": [
"node_modules/@types/*",
"./server/types/*"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment