Last active
August 31, 2023 13:45
-
-
Save mattvagni/c48980bf533e83b8ff7b2b2b4bb12525 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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