Skip to content

Commit

Permalink
fix: define compiler options in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Ernst committed Dec 1, 2023
1 parent 7df3fe6 commit ff978fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions apps/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
"default": "./src/integrated.ts"
}
},
"compilerOptions": {
"rootDir": "./src"
},
"types": "./dist/index.d.ts",
"files": [
"./src",
Expand Down
2 changes: 1 addition & 1 deletion apps/admin/src/services/actions/createActionContext.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {Variant} from '@myparcel-pdk/common';
import {getActionIdentifier} from '@myparcel-pdk/admin';
import {toArray} from '@myparcel/ts-utils';
import {createLogger} from '../logger';
import {createNotification} from '../createNotification';
Expand All @@ -13,6 +12,7 @@ import {
} from '../../types';
import {useAdminInstance} from '../../composables';
import {type ActionContext} from '../../actions';
import {getActionIdentifier} from './getActionIdentifier';

export const createActionContext = <A extends MaybeAdminAction>(
action: AnyActionDefinition<A>,
Expand Down

0 comments on commit ff978fa

Please sign in to comment.