Skip to content

Commit b842987

Browse files
committed
Change to relative path on install
- Remove tsconfig.build.json from .eslintrc.js
1 parent 89927d8 commit b842987

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
ecmaVersion: 13,
1515
parser: '@typescript-eslint/parser',
1616
sourceType: 'module',
17-
project: ['./tsconfig.json', './tsconfig.build.json'],
17+
project: ['./tsconfig.json'],
1818
extraFileExtensions: ['.vue'],
1919
},
2020
plugins: [

src/install.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { App } from 'vue'
22

3-
import VueMagnifier from '@/components/VueMagnifier.vue'
3+
import VueMagnifier from './components/VueMagnifier.vue'
44

5-
import '@/css/style.css'
5+
import './css/style.css'
66

77
VueMagnifier.install = (app: App) => {
88
app.component('VueMagnifier', VueMagnifier)

0 commit comments

Comments
 (0)