blob: 6c2d8de5237727c2803565b586630c4254299d23 [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 },
30 "include": ["src"]
gio5f2f1002025-03-20 18:38:48 +040031}