{ "compilerOptions": { "target": "es2020", "lib": [ "dom", "dom.iterable", "esnext" ], "typeRoots": [ "node_modules/@types" ], "types": ["node"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": false, "forceConsistentCasingInFileNames": true, "module": "esnext", "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", "noFallthroughCasesInSwitch": false, "paths": { "@app/api": ["./src/api/index.ts"], "@app/components": ["./src/components/index.ts"], "@app/containers": ["./src/containers/index.ts"], "@app/dialogs": ["./src/dialogs/index.ts"], "@app/forms": ["./src/forms/index.ts"], "@app/hooks": ["./src/hooks/index.ts"], "@app/images": ["./src/images/index.ts"], "@app/services": ["./src/services/index.ts"], "@app/store": ["./src/store/index.ts"], "@app/types": ["./src/types/index.ts"], "@app/utils": ["./src/utils/index.ts"], "@app/websocket": ["./src/websocket/index.ts"], "@app/websocket/types": ["./src/websocket/types/index.ts"], "@app/generated": ["./src/generated/index.ts"] } }, "include": [ "src" ] }