openpencil/packages/core/tsconfig.json
Danila Poyarkov 54310308dc refactor(kiwi): split schema text from runtime
- Move the Kiwi runtime under schema-runtime to match folder naming
- Load the Figma schema from a .kiwi text asset with static validation
- Assert Figma clipboard-derived field numbers for fragile layout/text fields
2026-05-21 14:54:12 +03:00

25 lines
540 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowArbitraryExtensions": true,
"types": ["node", "bun"],
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"paths": {
"#core/*": ["./src/*"],
"@open-pencil/core": ["./src/index.ts"],
"@open-pencil/core/*": ["./src/*"]
}
},
"include": ["src"]
}