Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
1.6 kB · 48 lines
JSON
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849{ "compilerOptions": { "baseUrl": ".", "rootDir": ".", // The workspaces that consume the (now ESM) `streamplace` package and its // ESM-only `@atproto/lex` dep set `moduleResolution: bundler` in their own // tsconfig (js/app, js/components). Under bundler, tsc enforces each // package's `exports` map, so a few workspace/vendor packages that only // export `.` need a paths alias for the historical deep imports that // Metro/web bundlers still resolve at runtime. See the lex codegen migration. "paths": { "@streamplace/components/src/*": ["../components/src/*"], "@atproto/oauth-client/dist/*": [ "../../node_modules/@atproto/oauth-client/dist/*" ] }, "importHelpers": true, "allowJs": false, "allowSyntheticDefaultImports": true, "downlevelIteration": true, "esModuleInterop": true, "preserveSymlinks": true, "incremental": true, "jsx": "react-jsx", "module": "esnext", "moduleResolution": "node", "noEmitOnError": false, "noImplicitAny": false, "noImplicitReturns": false, "noUnusedLocals": false, "noUnusedParameters": false, "useUnknownInCatchVariables": false, "preserveConstEnums": true, // DONT DO THIS so jsdoc will remain "removeComments": false, "resolveJsonModule": true, "skipLibCheck": true, "sourceMap": false, "strictNullChecks": true, "target": "es2020", "types": ["node"], "lib": ["dom", "esnext"] }, "exclude": ["_", "*.d.ts"], "typeAcquisition": { "enable": true }}