2026-06-06 15:38:27 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-07-17 22:32:13 +00:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"strict": true,
|
2026-06-06 15:38:27 +00:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2026-07-17 22:32:13 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"types": ["bun"],
|
|
|
|
|
"paths": {
|
|
|
|
|
"@open-pencil/fig": ["./src/index.ts"],
|
2026-07-17 23:06:34 +00:00
|
|
|
"@open-pencil/fig/instance-overrides": ["./src/instance-overrides/index.ts"],
|
2026-07-17 22:32:13 +00:00
|
|
|
"@open-pencil/fig/node-change": ["./src/node-change/index.ts"]
|
|
|
|
|
}
|
2026-06-06 15:38:27 +00:00
|
|
|
},
|
2026-07-17 22:32:13 +00:00
|
|
|
"include": ["src/**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2026-06-06 15:38:27 +00:00
|
|
|
}
|