Browse Source

Fix tsconfig paths in pioneer and api-examples

Leszek Wiesner 4 years ago
parent
commit
8f303e7a98
2 changed files with 2 additions and 2 deletions
  1. 1 1
      pioneer/tsconfig.json
  2. 1 1
      utils/api-examples/tsconfig.json

+ 1 - 1
pioneer/tsconfig.json

@@ -20,7 +20,7 @@
     "resolveJsonModule": true,
     "baseUrl": ".",
     "paths": {
-      "@polkadot/types/augment": [ "../types/src/definitions/augment-types.ts" ],
+      "@polkadot/types/augment": [ "../types/augment-codec/augment-types.ts" ],
       // "@joystream/types/": [ "../types/src/" ],
       // "@joystream/types/*": [ "../types/src/*" ],
       // "@polkadot/joy-election/": [ "packages/joy-election/src/" ],

+ 1 - 1
utils/api-examples/tsconfig.json

@@ -12,7 +12,7 @@
     "noUnusedLocals": true,
     "baseUrl": "./",
     "paths": {
-      "@polkadot/types/augment": ["../../types/src/definitions/augment-types.ts"]
+      "@polkadot/types/augment": ["../../types/augment-codec/augment-types.ts"]
     }
   },
   "include": ["src/**/*"]