Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Last active June 30, 2022 15:22
Show Gist options
  • Save petrosDemetrakopoulos/b93e6c1f5b9e2b83f81fff43b30dc701 to your computer and use it in GitHub Desktop.
Save petrosDemetrakopoulos/b93e6c1f5b9e2b83f81fff43b30dc701 to your computer and use it in GitHub Desktop.
Example tsconfig.json file
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"sourceMap": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node"
},
"include": ["./src/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment