Skip to content

Instantly share code, notes, and snippets.

@inscapist
Created May 29, 2021 15:11
Show Gist options
  • Save inscapist/3e950f9dc26c4336ac403501eebf2f44 to your computer and use it in GitHub Desktop.
Save inscapist/3e950f9dc26c4336ac403501eebf2f44 to your computer and use it in GitHub Desktop.
Tsconfig.json Boilerplate
{
"compilerOptions": {
"target": "es2019",
"module": "es2015",
"lib": ["dom", "esnext"],
"strict": true,
"outDir": "./src/gen",
"declaration": true
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
@inscapist
Copy link
Author

inscapist commented May 29, 2021

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