mirror of
https://github.com/colanode/colanode.git
synced 2025-12-15 19:27:46 +01:00
24 lines
508 B
JSON
24 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{ "path": "../../packages/core/tsconfig.json" },
|
|
{ "path": "../../packages/crdt/tsconfig.json" }
|
|
]
|
|
}
|