Skip to content

Commit

Permalink
build: update import attributes
Browse files Browse the repository at this point in the history
Signed-off-by: Trezy <[email protected]>
  • Loading branch information
trezy committed Dec 26, 2024
1 parent 4d8f15b commit 53cddcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'node:path';
import esbuild from 'rollup-plugin-esbuild';
import sourcemaps from 'rollup-plugin-sourcemaps';
import repo from './package.json' assert { type: 'json' };
import repo from './package.json' with { type: 'json' };
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
Expand Down
2 changes: 1 addition & 1 deletion src/core/reconciler.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable no-empty-function */

import Reconciler from 'react-reconciler';
import packageData from '../../package.json' assert { type: 'json' };
import packageData from '../../package.json' with { type: 'json' };
import { afterActiveInstanceBlur } from '../helpers/afterActiveInstanceBlur';
import { appendChild } from '../helpers/appendChild';
import { beforeActiveInstanceBlur } from '../helpers/beforeActiveInstanceBlur';
Expand Down
1 change: 1 addition & 0 deletions tsconfig.eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"files": [
".eslintrc.js",
"release.config.js",
"rollup.config.mjs",
],
"include": [
"./lib/**/*",
Expand Down

0 comments on commit 53cddcd

Please sign in to comment.