Skip to content

Instantly share code, notes, and snippets.

@onionmk2
Created November 30, 2016 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onionmk2/6017b9c09bad3bfb81b823c1d6575ba3 to your computer and use it in GitHub Desktop.
Save onionmk2/6017b9c09bad3bfb81b823c1d6575ba3 to your computer and use it in GitHub Desktop.
reactでの tsconfig.json 一例
{
"compilerOptions": {
"outDir": "./dist/",
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"inlineSourceMap": true,
"experimentalDecorators": true,
"jsx": "react",
"pretty": true,
"strictNullChecks": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment