- 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
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"allowArbitraryExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"#vue/*": ["./packages/vue/src/*", "./packages/vue/src/*.vue"],
|
|
"#core/*": ["./packages/core/src/*"],
|
|
"#cli/*": ["./packages/cli/src/*"],
|
|
"#mcp/*": ["./packages/mcp/src/*"],
|
|
"#tests/*": ["./tests/*"],
|
|
"tinykeys": ["./node_modules/tinykeys/dist/tinykeys.d.ts"],
|
|
"@open-pencil/vue": ["./packages/vue/src/index.ts"],
|
|
"@open-pencil/core": ["./packages/core/src/index.ts"],
|
|
"@open-pencil/core/*": ["./packages/core/src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|