remove unnecessary configuration

This commit is contained in:
Pavel Prichodko 2022-07-01 15:22:26 +02:00
parent 706c5693fa
commit f59b38a3e4
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
2 changed files with 1 additions and 7 deletions

View File

@ -24,7 +24,7 @@
"postbuild": "yarn typegen",
"test": "vitest",
"typecheck": "tsc",
"typegen": "tsc --noEmit false --emitDeclarationOnly --paths null || true",
"typegen": "tsc --noEmit false --emitDeclarationOnly || true",
"lint": "eslint src",
"format": "prettier --write src",
"protos": "protons protos/*.proto",

View File

@ -1,7 +1,6 @@
/// <reference types="vitest" />
import react from '@vitejs/plugin-react'
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import { dependencies, peerDependencies } from './package.json'
@ -13,11 +12,6 @@ const external = [
export default defineConfig(({ mode }) => {
return {
resolve: {
alias: {
'~': resolve('.'),
},
},
build: {
target: 'es2020',
lib: {