Files
api/tsconfig.json
Valentin Fernandez e16ae0869c Patch typegen query to prevent it from adding invalid import (#6073)
* Temporary patch for typegen/generate/query to ignore StagingXcmV4Xcm

* build and lint
2025-01-23 10:08:02 -05:00

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 substrate base. TS only allow single augmentations, so exclude here
"packages/api-augment/src/kusama/*.ts",
"packages/api-augment/src/polkadot/*.ts"
]
}