Skip to content

Instantly share code, notes, and snippets.

@rzvl
Last active April 12, 2022 15:05
Show Gist options
  • Save rzvl/9725ffe4902540104ab0231817a77e26 to your computer and use it in GitHub Desktop.
Save rzvl/9725ffe4902540104ab0231817a77e26 to your computer and use it in GitHub Desktop.
Minimal tsconfig file settings
{
"compilerOptions": {
"rootDir": "./src",
"outDir": "./public",
"target": "es5"
},
// this setting forces TS not to compile any file out of 'src' folder
"include": ["src"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment