Skip to content

Commit 8e360b7

Browse files
committed
push fixes
1 parent 17261af commit 8e360b7

90 files changed

Lines changed: 297 additions & 257 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/actions/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export { default as useAction } from './useAction.js'
2-
export type { T_ActionResponse as T_ActionResponse } from './types.js'
1+
export { default as useAction } from './useAction'
2+
export type { T_ActionResponse as T_ActionResponse } from './types'

packages/actions/src/useAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useState } from 'react'
22

3-
import { T_ActionResponse } from './types.js'
3+
import { type T_ActionResponse } from './types'
44

55
type State<T> = {
66
loading: boolean

packages/actions/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"include": ["src/**/*"],
32
"compilerOptions": {
4-
"rootDir": "./src",
53
"esModuleInterop": true,
64
"declaration": true,
5+
"declarationMap": true,
6+
"sourceMap": true,
7+
"incremental": true,
8+
"isolatedModules": true,
79
"forceConsistentCasingInFileNames": true,
810
"strict": true,
911
"skipLibCheck": true,

packages/array/src/index.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
export { default as each } from './each.js'
2-
export { default as filter } from './filter.js'
3-
export { default as groupBy } from './groupBy.js'
4-
export { default as map } from './map.js'
5-
export { default as reduce } from './reduce.js'
6-
export { default as unique } from './unique.js'
1+
export { default as each } from './each'
2+
export { default as filter } from './filter'
3+
export { default as groupBy } from './groupBy'
4+
export { default as map } from './map'
5+
export { default as reduce } from './reduce'
6+
export { default as unique } from './unique'

packages/array/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"include": ["src/**/*"],
32
"compilerOptions": {
4-
"rootDir": "./src",
53
"esModuleInterop": true,
64
"declaration": true,
5+
"declarationMap": true,
6+
"sourceMap": true,
7+
"incremental": true,
8+
"isolatedModules": true,
79
"forceConsistentCasingInFileNames": true,
810
"strict": true,
911
"skipLibCheck": true,

packages/context/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default as createContext } from './createContext.js'
1+
export { default as createContext } from './createContext'

packages/context/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"include": ["src/**/*"],
32
"compilerOptions": {
4-
"rootDir": "./src",
53
"esModuleInterop": true,
64
"declaration": true,
5+
"declarationMap": true,
6+
"sourceMap": true,
7+
"incremental": true,
8+
"isolatedModules": true,
79
"forceConsistentCasingInFileNames": true,
810
"strict": true,
911
"skipLibCheck": true,

packages/dates/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default as format } from './format.js'
1+
export { default as format } from './format'

packages/dates/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"include": ["src/**/*"],
32
"compilerOptions": {
4-
"rootDir": "./src",
53
"esModuleInterop": true,
64
"declaration": true,
5+
"declarationMap": true,
6+
"sourceMap": true,
7+
"incremental": true,
8+
"isolatedModules": true,
79
"forceConsistentCasingInFileNames": true,
810
"strict": true,
911
"skipLibCheck": true,

packages/dnd/src/DndContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client'
22
import { createContext, Dispatch, SetStateAction } from 'react'
33

4-
import { Coords, ElementId, Data, Nullable } from './types.js'
4+
import { type Coords, type ElementId, type Data, type Nullable } from './types'
55

66
export type DndListeners = {
77
onDrop?: (active: ElementId, over: Nullable<ElementId>) => void

0 commit comments

Comments
 (0)