Skip to content

Instantly share code, notes, and snippets.

@jamesrr39
Created September 3, 2019 16:46
Show Gist options
  • Save jamesrr39/220c294f3263a307915910db770a2d06 to your computer and use it in GitHub Desktop.
Save jamesrr39/220c294f3263a307915910db770a2d06 to your computer and use it in GitHub Desktop.
Tsconfig: bundle tool-free configuration, for use with es6 import style
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
},
"jsx": "react",
"lib": ["es5", "es6", "dom"],
},
"include": [
"src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment