Skip to content

Instantly share code, notes, and snippets.

@MZanggl
Last active December 26, 2019 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MZanggl/5a3e5cd9b9fa3196fd67caea02df42ec to your computer and use it in GitHub Desktop.
Save MZanggl/5a3e5cd9b9fa3196fd67caea02df42ec to your computer and use it in GitHub Desktop.
simple ts configurations for ES5 compilation
{
"compilerOptions": {
"lib": ["ES2020"],
"target": "ES5",
"module": "CommonJS",
"outDir": "./dist",
"baseUrl": "./src",
"strict": true,
"declaration": true
},
"include": [
"src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment