Skip to content

Instantly share code, notes, and snippets.

@euxn23
Last active September 20, 2020 07:43
Show Gist options
  • Save euxn23/fc6037c70ea64314ebcdc73348c4acc2 to your computer and use it in GitHub Desktop.
Save euxn23/fc6037c70ea64314ebcdc73348c4acc2 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": "./",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true
},
"include": [
"src/**/*.ts*"
],
"exclude": [
"node_modules",
"dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment