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