This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
alfadatizar/tsconfig.json

15 lines
816 B
JSON
Raw Permalink Normal View History

2023-07-03 15:07:56 +00:00
{
"compilerOptions": {
"target": "es2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"jsx": "react" /* Specify what JSX code is generated. */,
2023-08-06 15:48:13 +00:00
"jsxFactory": "h",
/* https://github.com/developit/vhtml/issues/31 */
"jsxFragmentFactory": "null",
2023-07-03 15:07:56 +00:00
"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. */
}
}