js fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import type { PermissionKey } from "./permissions";
|
import type { PermissionKey } from "./permissions.js";
|
||||||
|
|
||||||
export interface AuthUser {
|
export interface AuthUser {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -18,4 +18,3 @@ export interface LoginResponse {
|
|||||||
token: string;
|
token: string;
|
||||||
user: AuthUser;
|
user: AuthUser;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
export * from "./auth/permissions";
|
export * from "./auth/permissions.js";
|
||||||
export * from "./auth/types";
|
export * from "./auth/types.js";
|
||||||
export * from "./common/api";
|
export * from "./common/api.js";
|
||||||
export * from "./company/types";
|
export * from "./company/types.js";
|
||||||
export * from "./files/types";
|
export * from "./files/types.js";
|
||||||
export * from "./gantt/types";
|
export * from "./gantt/types.js";
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"extends": "../tsconfig.base.json",
|
"extends": "../tsconfig.base.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"module": "NodeNext",
|
||||||
|
"moduleResolution": "NodeNext",
|
||||||
"outDir": "dist",
|
"outDir": "dist",
|
||||||
"rootDir": "src",
|
"rootDir": "src",
|
||||||
"declaration": true
|
"declaration": true
|
||||||
@@ -9,4 +11,3 @@
|
|||||||
"src"
|
"src"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user