blob: 803c90a4ae791e0b47523f4bbf75ce0a40b35d80 [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001{
giod0026612025-05-08 13:00:36 +00002 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4 "target": "ES2020",
5 "useDefineForClassFields": true,
6 "lib": ["ES2020", "DOM", "DOM.Iterable"],
7 "module": "ESNext",
8 "skipLibCheck": true,
gio5f2f1002025-03-20 18:38:48 +04009
giod0026612025-05-08 13:00:36 +000010 /* Bundler mode */
11 "moduleResolution": "Bundler",
12 "allowImportingTsExtensions": true,
13 "isolatedModules": true,
14 "moduleDetection": "force",
15 "noEmit": true,
16 "jsx": "react-jsx",
gio5f2f1002025-03-20 18:38:48 +040017
giod0026612025-05-08 13:00:36 +000018 /* Linting */
19 "strict": true,
20 "noUnusedLocals": true,
21 "noUnusedParameters": true,
22 "noFallthroughCasesInSwitch": true,
23 "noUncheckedSideEffectImports": true,
gio5f2f1002025-03-20 18:38:48 +040024
giod0026612025-05-08 13:00:36 +000025 "baseUrl": ".",
26 "paths": {
27 "@/*": ["./src/*"]
28 }
29 },
gioc31bf142025-06-16 07:48:20 +000030 "include": ["src", "../config/src/config.ts"]
gio5f2f1002025-03-20 18:38:48 +040031}