feat: Cấu hình ESLint flat config mới, thêm jsconfig.json, và sắp xếp lại các import tự động.

This commit is contained in:
Ho Ngoc Hai
2026-01-07 17:48:49 +07:00
parent 471508baa4
commit b5f97e2012
52 changed files with 356 additions and 416 deletions

16
jsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2024",
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strict": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}