{ "compilerOptions": { "target": "ES2022", "useDefineForClassFields": true, "module": "ESNext", "lib": ["ES2022", "DOM", "DOM.Iterable"], "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "moduleDetection": "force", "noEmit": true, /* Path mapping */ "baseUrl": ".", "paths": { "@/*": ["src/main/*"], "@fromchat/protocol": ["src/protocol/index.ts"] }, /* Linting */ "strict": true, "erasableSyntaxOnly": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true, "noUnusedLocals": true, "noUnusedParameters": true, /* React JSX Support */ "jsx": "react-jsx", "jsxImportSource": "react" }, "include": ["src", "src/protocol"], "exclude": ["**/__*/**", "__*"] }