Last active
May 13, 2025 17:41
-
-
Save blumus/9407714ef742207dcbb0d5a4d9c18d47 to your computer and use it in GitHub Desktop.
run npm install -D typescript
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": { | |
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ | |
"module": "commonjs", /* Specify what module code is generated. */ | |
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ | |
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ | |
"strict": true, /* Enable all strict type-checking options. */ | |
"skipLibCheck": true, /* Skip type checking all .d.ts files. */ | |
"outDir": "./build", /* Specify an output folder for all emitted files. */ | |
"sourceMap": true, /* Create source map files for emitted JavaScript files. */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment