tsconfig-augment.json 313 B

12345678910111213
  1. {
  2. "extends": "./tsconfig-base.json",
  3. "compilerOptions": {
  4. "noEmit": true, // No need to actually create any output
  5. "paths": {
  6. "@polkadot/types/augment": ["augment/augment-types.ts"],
  7. "@polkadot/api/augment": ["augment/augment-api.ts"]
  8. }
  9. },
  10. "include": [
  11. "augment/**/*.ts"
  12. ]
  13. }