Skip to content

Instantly share code, notes, and snippets.

@mattvagni
Last active August 31, 2023 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattvagni/c48980bf533e83b8ff7b2b2b4bb12525 to your computer and use it in GitHub Desktop.
Save mattvagni/c48980bf533e83b8ff7b2b2b4bb12525 to your computer and use it in GitHub Desktop.
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"lib": [
"es2020"
],
"incremental": true,
"noEmit": true,
"noEmitOnError": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"noImplicitOverride": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"inlineSourceMap": false,
"inlineSources": false,
"strictPropertyInitialization": false,
"types": [
"vitest/globals"
]
},
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment