openpencil/packages/fig/tsconfig.json
Danila Poyarkov 2bd2304bcb refactor(fig): own instance interpretation
- Move component properties, symbol overrides, derived symbol data, and clone synchronization into @open-pencil/fig\n- Add the public instance-overrides subpath with package tests and packed smoke coverage\n- Remove cross-package forwarding modules and enforce direct owner imports in architecture checks
2026-07-18 02:06:34 +03:00

25 lines
674 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": ".",
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["bun"],
"paths": {
"@open-pencil/fig": ["./src/index.ts"],
"@open-pencil/fig/instance-overrides": ["./src/instance-overrides/index.ts"],
"@open-pencil/fig/node-change": ["./src/node-change/index.ts"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
}