2025-02-05 16:12:35 -03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
2025-02-14 18:39:36 -03:00
|
|
|
"resolveJsonModule": true,
|
2025-02-05 16:12:35 -03:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
|
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./configure/src/*"]
|
2025-02-14 18:39:36 -03:00
|
|
|
},
|
|
|
|
|
"types": ["vite/client", "react", "react-dom"]
|
2025-02-05 16:12:35 -03:00
|
|
|
},
|
2025-02-14 18:39:36 -03:00
|
|
|
"include": ["configure/src"]
|
2025-02-05 16:12:35 -03:00
|
|
|
}
|