chore: lint

This commit is contained in:
Reinaldy Rafli 2022-09-24 07:58:47 +07:00
parent 5b1fad3f0c
commit 3478cfb0d8
No known key found for this signature in database
GPG Key ID: EA1B2522C1693EC8
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { defineConfig } from "rollup";
import ts from "@rollup/plugin-typescript";
import {defineConfig} from 'rollup';
import ts from '@rollup/plugin-typescript';
export default defineConfig({
input: 'src/index.ts',
@ -14,6 +14,6 @@ export default defineConfig({
},
],
plugins: [
ts({ tsconfig: "./tsconfig.json" }),
ts({tsconfig: './tsconfig.json'}),
],
});