2023-11-30 16:16:32 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2025-02-17 19:55:20 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-12-07 13:21:13 +01:00
|
|
|
"baseUrl": ".",
|
2025-02-17 19:55:20 +00:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
}
|
2023-11-30 16:16:32 -05:00
|
|
|
},
|
2025-09-08 12:51:26 +02:00
|
|
|
"include": ["src", "tests", "playwright.config.ts"],
|
2025-02-17 19:55:20 +00:00
|
|
|
"references": [
|
|
|
|
|
{
|
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
|
}
|
|
|
|
|
]
|
2023-11-30 16:16:32 -05:00
|
|
|
}
|