Skip to content

Instantly share code, notes, and snippets.

@galenweber
Created February 18, 2018 18:10
Show Gist options
  • Save galenweber/d82fe278f27382998fdd30dbfea31e12 to your computer and use it in GitHub Desktop.
Save galenweber/d82fe278f27382998fdd30dbfea31e12 to your computer and use it in GitHub Desktop.
tsconfig for React TypeScript SSR
{
"compilerOptions": {
"target": "es6",
"lib": ["es2015", "es2016", "es2017", "dom"],
"outDir": "./dist/",
"strict": true,
"sourceMap": true,
"module": "es2015",
"moduleResolution": "node",
"jsx": "react",
"allowSyntheticDefaultImports": true,
"baseUrl": "."
},
"include": [
"./src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment