- 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
25 lines
540 B
JSON
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"]
|
|
}
|