@urbit/api: fix build

This commit is contained in:
Liam Fitzgerald 2021-07-01 13:24:34 +10:00
parent ca8f121517
commit a816ed6a41
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB
6 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
import { Path, Patp } from "..";
import { Path, Patp } from "../lib";
import { Resource } from "../groups";
export type ContactUpdate =

View File

@ -1,4 +1,4 @@
import { Patp } from "..";
import { Patp } from "../lib";
import BigIntOrderedMap from "../lib/BigIntOrderedMap";
import BigIntArrayOrderedMap from "../lib/BigIntArrayOrderedMap";

View File

@ -1,4 +1,4 @@
import { PatpNoSig, Path, Jug, ShipRank, Enc } from '..';
import { PatpNoSig, Path, Jug, ShipRank, Enc } from '../lib';
import { roleTags } from './index';
export type RoleTags = typeof roleTags[number];

View File

@ -1,4 +1,4 @@
import { Poke, Serial } from "..";
import { Poke, Serial } from "../lib";
import { InviteUpdate, InviteUpdateAccept, InviteUpdateDecline } from "./types";
export const inviteAction = <T extends InviteUpdate>(data: T): Poke<T> => ({

View File

@ -1,4 +1,4 @@
import { Serial, PatpNoSig, Path } from '..';
import { Serial, PatpNoSig, Path } from '../lib';
import { Resource } from "../groups";
export type InviteUpdate =

View File

@ -1,7 +1,6 @@
{
"include": ["*.ts"],
"exclude": ["node_modules", "dist", "@types"],
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist",
"module": "ES2020",
"noImplicitAny": true,
@ -13,7 +12,8 @@
"declaration": true,
"sourceMap": true,
"strict": false,
"noErrorTruncation": true,
"allowJs": true
}
}
"noErrorTruncation": true
},
"exclude": ["node_modules", "./dist/**/*", "@types"],
"include": ["./*.ts"]
}