Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created October 10, 2021 09:14
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 WesleySmits/2b605cc264c040975bd2252277fc8783 to your computer and use it in GitHub Desktop.
Save WesleySmits/2b605cc264c040975bd2252277fc8783 to your computer and use it in GitHub Desktop.
TS Starter: tsconfig.json
{
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"module": "es6",
"target": "es6",
"allowJs": false,
"types": ["node"],
"typeRoots": ["./assets/js/types", "node_modules/@types"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"lib": [
"es2019",
"dom",
"dom.iterable"
],
},
"moduleDirectories": [
"node_modules",
"assets"
],
"exclude": [
"./node_modules",
"./public",
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment