Skip to content

Instantly share code, notes, and snippets.

@saiumesh535
Last active September 20, 2019 13:29
Show Gist options
  • Save saiumesh535/f4a19110756f1b056685665b9d4e7d2c to your computer and use it in GitHub Desktop.
Save saiumesh535/f4a19110756f1b056685665b9d4e7d2c to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"incremental": true,
"target": "es2017",
"module": "commonjs",
"lib": ["es2017"],
"types": ["node"],
"outDir": "./build",
"rootDir": "./",
"strict": true,
"noImplicitAny": false,
"moduleResolution": "node",
"esModuleInterop": true,
"strictNullChecks": false,
"resolveJsonModule": true,
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment