Skip to content

Instantly share code, notes, and snippets.

@stackdumper
Last active February 9, 2019 15:44
Show Gist options
  • Save stackdumper/e9516f69f1b2d787c3036c0d30b53dad to your computer and use it in GitHub Desktop.
Save stackdumper/e9516f69f1b2d787c3036c0d30b53dad to your computer and use it in GitHub Desktop.
Typescript config
{
"compilerOptions": {
"target": "esnext",
"module": "none",
"lib": ["dom", "esnext"],
"jsx": "preserve",
/* Module Resolution Options */
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
/* Experimental Options */
"experimentalDecorators": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment