Created
January 8, 2025 02:32
-
-
Save r37r0m0d3l/f07d6f6bbe2b7b9a98b484b3ea099f27 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"compilerOptions": { | |
/* Base Options: */ | |
"esModuleInterop": true, | |
"skipLibCheck": true, | |
"target": "es2022", | |
"allowJs": true, | |
"resolveJsonModule": true, | |
"moduleDetection": "force", | |
"isolatedModules": true, | |
"verbatimModuleSyntax": true, | |
/* Strictness */ | |
"strict": true, | |
"noUncheckedIndexedAccess": true, | |
"noImplicitOverride": true, | |
/* Node Stuff */ | |
"allowImportingTsExtensions": true, | |
"module": "NodeNext", | |
"noEmit": true, | |
/* If your code doesn't run in the DOM: */ | |
"lib": [ | |
"es2022" | |
], | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment