Skip to content

Instantly share code, notes, and snippets.

@ccnokes
Created March 8, 2018 03:50
Show Gist options
  • Select an option

  • Save ccnokes/e8c419e2874111c5ef41cc1442680acb to your computer and use it in GitHub Desktop.

Select an option

Save ccnokes/e8c419e2874111c5ef41cc1442680acb to your computer and use it in GitHub Desktop.
Sample, minimal tsconfig.json for NPM package
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["es2017", "es7", "es6", "dom"],
"declaration": true,
"outDir": "dist",
"strict": true,
"esModuleInterop": true
},
"exclude": [
"node_modules",
"dist"
]
}
@mxvsh

mxvsh commented Sep 12, 2021

Copy link
Copy Markdown

thanks for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment