22 lines
470 B
JSON
22 lines
470 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
"outDir": "./lib",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
|
|
"plugins": [
|
|
{ "transform": "typescript-transform-paths" },
|
|
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
|
|
]
|
|
}
|
|
}
|