🔧 chore(tsconfig): use recommended config

This commit is contained in:
retrozinndev
2025-07-30 16:17:20 -03:00
parent 30109b00a8
commit d95273657c
+6 -4
View File
@@ -3,11 +3,13 @@
"compilerOptions": { "compilerOptions": {
"allowJs": false, "allowJs": false,
"checkJs": true, "checkJs": true,
"jsx": "react-jsx", "module": "es2022",
"jsxImportSource": "ags/gtk4", "target": "es2020",
"module": "esnext", "lib": ["ES2024"],
"moduleResolution": "bundler", "moduleResolution": "bundler",
"skipLibCheck": true,
"strict": true, "strict": true,
"target": "esnext" "jsx": "react-jsx",
"jsxImportSource": "ags/gtk4"
} }
} }