Skip to content

Commit

Permalink
fix: remove duplicate lines
Browse files Browse the repository at this point in the history
  • Loading branch information
nodra-vr authored and Koen Van Rulo committed Jul 29, 2022
1 parent afb6401 commit 611f660
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
"author": "Valmisson Grizorte",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "src/index.ts",
"files": [
"src",
"dist"
"src"
],
"scripts": {
"build": "tsc --build",
Expand Down
6 changes: 2 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": ["src/**/*"],
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.d.ts"],
"exclude": ["node_modules/*", "dist/*"],
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"outDir": "dist"
},
"include": ["src/**/*.ts", "src/**/*.js", "src/types/*.d.ts"],
"exclude": ["node_modules"]
}
}

0 comments on commit 611f660

Please sign in to comment.