Files
RGC/SuiviREForamteur/suivireforamteur/tsconfig.app.json
2026-02-11 13:57:54 +01:00

30 lines
764 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": [ "ES2022", "DOM", "DOM.Iterable" ],
"module": "ESNext",
"types": [ "vite/client" ],
"skipLibCheck": true,
/* Ajoutez ces lignes pour React */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": [ "src", "vite.config.js" ]
}