mirror of
https://github.com/pezkuwichain/pezkuwi-api.git
synced 2026-04-21 23:47:57 +00:00
22 lines
568 B
JSON
22 lines
568 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./packages",
|
|
"composite": false,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"include": [
|
|
"packages/**/src/**/*",
|
|
"packages/**/scripts/**/*",
|
|
"scripts/*"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**/*",
|
|
// these include the different-chain augmentations, which then overrides
|
|
// the bizinikiwi base. TS only allow single augmentations, so exclude here
|
|
"packages/api-augment/src/zagros/*.ts",
|
|
"packages/api-augment/src/pezkuwi/*.ts"
|
|
]
|
|
}
|