Skip to content

Instantly share code, notes, and snippets.

@BiosBoy
Created January 13, 2019 15:59
Show Gist options
  • Select an option

  • Save BiosBoy/27c136180e9c05cd936cd82da0c249e5 to your computer and use it in GitHub Desktop.

Select an option

Save BiosBoy/27c136180e9c05cd936cd82da0c249e5 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"module": "esnext",
"target": "es5",
"jsx": "react",
"moduleResolution": "node",
"lib": ["es6", "dom"],
"outDir": "./dist",
"rootDir": "./src"
},
"typeAcquisition": {
"enable": true
},
"typeRoots": [
"./typings.d.ts",
"./node_modules/@types"
],
"include": [
".src/.ts",
"src/**/*",
"./typings.d.ts"
],
"exclude": [
"node_modules",
"**/*.test.ts",
"server",
"dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment