Skip to content

Instantly share code, notes, and snippets.

@socker210
Last active August 16, 2021 09:31
Show Gist options
  • Save socker210/9921fefe3ba68ca0a8d8443c685bc4fc to your computer and use it in GitHub Desktop.
Save socker210/9921fefe3ba68ca0a8d8443c685bc4fc to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"skipLibCheck": true,
"isolatedModules": true,
"lib": ["DOM"],
"target": "ES2018",
"noEmit": true,
"strict": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"baseUrl": "."
},
"include": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment