2025-01-28 14:01:02 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-05-10 08:40:40 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
},
|
2025-05-02 21:43:51 +00:00
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
2025-08-25 17:42:56 +00:00
|
|
|
"target": "ES2022",
|
2025-01-28 14:01:02 +00:00
|
|
|
"useDefineForClassFields": true,
|
2025-08-25 17:42:56 +00:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2025-01-28 14:01:02 +00:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
2025-05-10 08:40:40 +00:00
|
|
|
"isolatedModules": true,
|
2025-01-28 14:01:02 +00:00
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-05-17 19:12:01 +00:00
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"allowUnreachableCode": true
|
2025-01-28 14:01:02 +00:00
|
|
|
},
|
2025-08-24 10:14:20 +00:00
|
|
|
"include": ["src", "../../modules/core/src/web/hooks/use-unsaved-changes-notifier"],
|
2025-05-10 08:40:40 +00:00
|
|
|
"exclude": ["node_modules"]
|
2025-01-28 14:01:02 +00:00
|
|
|
}
|