Skip to content

Instantly share code, notes, and snippets.

@ofcRS
Created September 22, 2020 12:50
Show Gist options
  • Select an option

  • Save ofcRS/75802e331aa66a639aa72124b49ae43e to your computer and use it in GitHub Desktop.

Select an option

Save ofcRS/75802e331aa66a639aa72124b49ae43e to your computer and use it in GitHub Desktop.
tsconfig te
{
"compilerOptions": {
"target": "ESNext",
"baseUrl": "./src",
"module": "esnext",
"lib": ["dom"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"jsx": "react",
"moduleResolution": "node",
"outDir": "build",
"noEmit": true,
"strict": true,
"strictPropertyInitialization": false,
"skipLibCheck": true,
"experimentalDecorators": true,
"resolveJsonModule": true
},
"include": ["src/**/*.ts*"],
"exclude": ["node_modules", "src/shared/**/*.ts*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment