Skip to content

Instantly share code, notes, and snippets.

@vschoener
Created August 10, 2020 11:59
Show Gist options
  • Save vschoener/450b3975d062b80331891d1d1cdcc869 to your computer and use it in GitHub Desktop.
Save vschoener/450b3975d062b80331891d1d1cdcc869 to your computer and use it in GitHub Desktop.
tsconfig for Medium Setup TypeScript project with art
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es2019",
"sourceMap": true,
"lib": ["esnext", "dom"],
"outDir": "./dist",
"baseUrl": "./",
"incremental": true
},
"exclude": ["node_modules", "dist"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment