tldraw/apps/dotcom/tsconfig.json
alex ce493dcfaf
[4/5] sync -> sync-core, sync-react -> sync (#4123)
Renames `@tldraw/sync` to `@tldraw/sync-core`, and `@tldraw/sync-react`
to `@tldraw/sync`. This also adds an export * from sync-core to sync.

- [x] `other`
2024-07-10 16:09:10 +00:00

50 lines
922 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"plugins": [
{
"name": "next"
}
]
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "_archive"],
"references": [
{
"path": "../../packages/assets"
},
{
"path": "../../packages/dotcom-shared"
},
{
"path": "../../packages/sync"
},
{
"path": "../../packages/sync-core"
},
{
"path": "../../packages/tldraw"
},
{
"path": "../../packages/utils"
},
{
"path": "../../packages/validate"
}
]
}