Skip to content

Instantly share code, notes, and snippets.

@Deiru2k
Created January 12, 2018 18:29
Show Gist options
  • Save Deiru2k/5bb666425ed5fb9bf184d3a960c975ce to your computer and use it in GitHub Desktop.
Save Deiru2k/5bb666425ed5fb9bf184d3a960c975ce to your computer and use it in GitHub Desktop.
tsconfig.json
package.json
src/
components/
Output/
Output.tsx
root.tsx
{
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"noImplicitAny": false,
"downlevelIteration": false,
"experimentalDecorators": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"moduleResolution": "node",
"target": "es2017",
"jsx": "react",
"rootDir": "./",
"baseUrl": "./",
"lib": ["dom", "es6", "dom.iterable", "scripthost"]
},
"include": [
"src/**/*",
"types/**/*",
],
"exclude": [
"dist",
"build",
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment