mirror of
https://github.com/colanode/colanode.git
synced 2025-12-29 00:25:03 +01:00
32 lines
1012 B
JSON
32 lines
1012 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Desktop",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@colanode/desktop/*": ["src/*"],
|
|
"@colanode/core/*": ["../../packages/core/src/*"],
|
|
"@colanode/crdt/*": ["../../packages/crdt/src/*"],
|
|
"@colanode/client/*": ["../../packages/client/src/*"],
|
|
"@colanode/ui/*": ["../../packages/ui/src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{ "path": "../../packages/core/tsconfig.json" },
|
|
{ "path": "../../packages/crdt/tsconfig.json" },
|
|
{ "path": "../../packages/client/tsconfig.json" },
|
|
{ "path": "../../packages/ui/tsconfig.json" }
|
|
],
|
|
"include": ["forge.env.d.ts", "src/**/*.ts", "src/**/*.tsx"]
|
|
}
|