File tree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,8 @@ export default defineConfig([
6767 ...commonParserOptions ,
6868 projectService : {
6969 allowDefaultProject : [
70- 'vite.config.mts' ,
7170 'vite.electron.config.mts' ,
72- 'vite.types.config.mts' ,
73- 'playwright.config.ts' ,
74- 'playwright.i18n.config.ts'
71+ 'vite.types.config.mts'
7572 ]
7673 }
7774 }
Original file line number Diff line number Diff line change @@ -98,9 +98,6 @@ catalog:
9898
9999cleanupUnusedCatalogs : true
100100
101- overrides :
102- ' @types/eslint ' : ' -'
103-
104101ignoredBuiltDependencies :
105102 - ' @firebase/util'
106103 - protobufjs
@@ -115,3 +112,6 @@ onlyBuiltDependencies:
115112 - esbuild
116113 - nx
117114 - oxc-resolver
115+
116+ overrides :
117+ ' @types/eslint ' : ' -'
Original file line number Diff line number Diff line change @@ -187,14 +187,12 @@ export default defineConfig({
187187 target : 'es2022' ,
188188 sourcemap : true ,
189189 rollupOptions : {
190- // Disabling tree-shaking
191- // Prevent vite remove unused exports
192- treeshake : false
190+ treeshake : true
193191 }
194192 } ,
195193
196194 esbuild : {
197- minifyIdentifiers : false ,
195+ minifyIdentifiers : SHOULD_MINIFY ,
198196 keepNames : true ,
199197 minifySyntax : SHOULD_MINIFY ,
200198 minifyWhitespace : SHOULD_MINIFY
You can’t perform that action at this time.
0 commit comments