mirror of
https://github.com/colanode/colanode.git
synced 2025-12-29 00:25:03 +01:00
23 lines
548 B
JSON
23 lines
548 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Desktop",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
},
|
|
"references": [
|
|
{ "path": "../../packages/core/tsconfig.json" },
|
|
{ "path": "../../packages/crdt/tsconfig.json" }
|
|
],
|
|
"include": ["src", "forge.env.d.ts"]
|
|
}
|