UNPKG
expeditaet
Version:
latest (1.2.0)
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Advent of Code Solutions
github.com/MariannaBoyle/expeditaet.git
MariannaBoyle/expeditaet
expeditaet
/
solutions
/
typescript
/
2023
/
21
/
vite.config.ts
20 lines
(17 loc)
•
264 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// managed-by-autotool
import { pakk }
from
'@alexaegis/vite'
; import { defineConfig }
from
'vite'
; export
default
defineConfig
({
build
: {
target
:
'es2022'
,
lib
: {
entry
: [],
formats
: [
'es'
], }, },
plugins
: [
pakk
({
dts
:
false
, }), ], });