Skip to content

Instantly share code, notes, and snippets.

@asunar
Created December 18, 2021 01:59
Show Gist options
  • Save asunar/7428b61186682b3a8168ebaf8303b7e4 to your computer and use it in GitHub Desktop.
Save asunar/7428b61186682b3a8168ebaf8303b7e4 to your computer and use it in GitHub Desktop.
{
"include": [
"src/**/*.js",
"test/**/*.js"
],
"compilerOptions": {
/* Basic Options */
"target": "ES2017",
"lib": ["ESNext.Array"],
"module": "commonjs",
"allowJs": true,
"checkJs": true,
"resolveJsonModule": true,
"noEmit": true,
"esModuleInterop": true,
"removeComments": true,
/* Strict Type-Checking Options */
"strict": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment