tsconfig.paths.json 346 B

1234567891011
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "@/*": ["src/*"],
  6. // load type augments so we get proper typings
  7. "@polkadot/types/augment": ["./node_modules/@joystream/types/augment-codec/augment-types.ts"],
  8. "@polkadot/api/augment": ["./node_modules/@joystream/types/augment-codec/augment-api.ts"]
  9. }
  10. }
  11. }