EvalueTonSavoir/client/tsconfig.json

45 lines
1 KiB
JSON
Raw Normal View History

2024-03-29 20:08:34 -04:00
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
2025-01-25 02:02:18 -05:00
"src/*": [
"src/*"
]
},
2024-03-29 20:08:34 -04:00
"target": "ESNext",
"useDefineForClassFields": true,
2025-01-25 02:02:18 -05:00
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
2024-10-31 01:00:26 -04:00
"module": "ESNext",
2024-03-29 20:08:34 -04:00
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
2024-03-29 20:08:34 -04:00
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true
},
2025-01-25 02:02:18 -05:00
// "exclude": [
// // "src/components/GiftTemplate/**/*",
// // "src/__tests__/components/GiftTemplate/**/*",
// ],
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
2024-03-29 20:08:34 -04:00
}