Skip to content

Instantly share code, notes, and snippets.

@lannex
Last active September 2, 2019 15:24
Show Gist options
  • Save lannex/020b2c583d79a8d42822a063aaba3a7e to your computer and use it in GitHub Desktop.
Save lannex/020b2c583d79a8d42822a063aaba3a7e to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "ES2015",
"jsx": "react", // or "react-native"
"moduleResolution": "node",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"sourceMap": true,
"skipLibCheck": true,
"lib": ["es2018", "dom"],
"resolveJsonModule": true,
"declaration": true
},
"include": ["lib/**/*", "src/**/*"],
"exclude": [
"node_modules",
"dest",
"android",
"ios",
"acceptance-tests",
".jest",
"src/setupTests.ts",
"./node_modules/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment