Skip to content

Instantly share code, notes, and snippets.

@fhj-code
Forked from rzane/tsconfig.json
Created March 9, 2024 15:14
Show Gist options
  • Select an option

  • Save fhj-code/f08bca97f79d1e57484d91c311907488 to your computer and use it in GitHub Desktop.

Select an option

Save fhj-code/f08bca97f79d1e57484d91c311907488 to your computer and use it in GitHub Desktop.
Typescript config for a client side app
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"baseUrl": ".",
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"include": ["src", "tests"],
"exclude": ["node_modules"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment