small changes

This commit is contained in:
Andrea Alberti 2024-11-02 09:50:16 +01:00
parent 6a672ee21e
commit 50c732e008

View file

@ -5,7 +5,7 @@
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext", // or "CommonJS" if you are targeting Node.js
"target": "ES2020", // Modern target for better browser support
"target": "ES2022", // Modern target for better browser support
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
@ -15,7 +15,7 @@
"strict": true, // Enforces strict type checking options
"lib": [
"DOM",
"ES2020"
"ES2022"
],
//"jsx": "react-jsx", // Required by React
},