Skip to content

Instantly share code, notes, and snippets.

@Happytreat
Created May 7, 2020 21:46
Show Gist options
  • Save Happytreat/8eaa953443573c04cc3b632e8111ed79 to your computer and use it in GitHub Desktop.
Save Happytreat/8eaa953443573c04cc3b632e8111ed79 to your computer and use it in GitHub Desktop.
TS Boilerplate: tsconfig
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true,
"outDir": "./dist",
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"include": ["src/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment