19 lines
435 B
JSON
19 lines
435 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"strict": false,
|
||
|
|
"declaration": true,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"declarationDir": "./dist",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@busi-comp/*": ["../../packages/business-components/src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"files": ["src/index.ts", "src/shims.d.ts"]
|
||
|
|
}
|