Skip to content

Commit

Permalink
chore: test compile with tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
KagChi committed Aug 8, 2023
1 parent 65bfb96 commit f85d1c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start:watch": "bun --watch src/index.ts",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "swc src -d dist"
"build": "tsc"
},
"type": "module",
"author": "KagChi",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": false,
"skipLibCheck": true,
"noEmitHelpers": true,
"importHelpers": true,
"resolveJsonModule": true,
Expand All @@ -22,5 +22,5 @@
"typeRoots": ["node_modules/@types", "src/typings", "bun-types"]
},
"exclude": ["node_modules", "node_modules/**/**.d.ts"],
"include": ["src/**/**.ts", "src/**/**.json", "tsup.config.ts"],
"include": ["src/**/**.ts"],
}

0 comments on commit f85d1c5

Please sign in to comment.