Skip to content

Instantly share code, notes, and snippets.

@ccnokes
Created March 8, 2018 03:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ccnokes/e8c419e2874111c5ef41cc1442680acb to your computer and use it in GitHub Desktop.
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
Copy link

mxvsh commented Sep 12, 2021

thanks for this

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