Skip to content

Instantly share code, notes, and snippets.

@medhatdawoud
Created August 3, 2020 14:26
Show Gist options
  • Save medhatdawoud/9153378f2da7d00d535be760ee3ce920 to your computer and use it in GitHub Desktop.
Save medhatdawoud/9153378f2da7d00d535be760ee3ce920 to your computer and use it in GitHub Desktop.
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"resolveJsonModule": true,
"noUnusedParameters": false,
"outDir": "lib/",
"pretty": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2017", //SO BABEL HANDLES THIS
"allowJs": true,
"noImplicitAny": false
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"**/*.js",
"**/*.jsx"
],
"typeRoots": [
"src/app/types-ts",
"src/css",
"node_modules/@types"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment