Skip to content

Instantly share code, notes, and snippets.

@Happytreat
Created May 7, 2020 21:50
Show Gist options
  • Save Happytreat/1d4b90797e7404741c356abf74e7f15c to your computer and use it in GitHub Desktop.
Save Happytreat/1d4b90797e7404741c356abf74e7f15c 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