Skip to content

Commit

Permalink
build: remove TS check during build
Browse files Browse the repository at this point in the history
  • Loading branch information
husa committed Aug 12, 2024
1 parent 3e2d96e commit 3bfb639
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 207 deletions.
204 changes: 0 additions & 204 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
"@rsbuild/core": "^1.0.1-beta.11",
"@rsbuild/plugin-react": "^1.0.1-beta.11",
"@rsbuild/plugin-sass": "^1.0.1-beta.11",
"@rsbuild/plugin-type-check": "^1.0.1-beta.11",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
Expand Down
3 changes: 1 addition & 2 deletions rsbuild.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { pluginSass } from '@rsbuild/plugin-sass';
import { pluginTypeCheck } from '@rsbuild/plugin-type-check';

export default defineConfig({
plugins: [pluginReact(), pluginSass(), pluginTypeCheck()],
plugins: [pluginReact(), pluginSass()],
tools: {
cssLoader: {
url: false,
Expand Down

0 comments on commit 3bfb639

Please sign in to comment.