Skip to content

Instantly share code, notes, and snippets.

@m1cm1c
Created September 23, 2022 09:55
Show Gist options
  • Save m1cm1c/e4ceb54b18af46d1964ec5052ed3b08d to your computer and use it in GitHub Desktop.
Save m1cm1c/e4ceb54b18af46d1964ec5052ed3b08d to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"strict": true,
"moduleResolution": "node",
"module": "commonjs",
"target": "es6",
"lib": [
"es2021",
"DOM"
],
"declaration": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"outDir": "lib",
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
},
"include": [
"src"
],
"exclude": [
"**/node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment