12 lines
124 B
YAML
12 lines
124 B
YAML
|
# https://taskfile.dev
|
||
|
|
||
|
version: '3'
|
||
|
|
||
|
tasks:
|
||
|
build: tsc
|
||
|
|
||
|
test:
|
||
|
cmds:
|
||
|
- { task: build }
|
||
|
- vitest run src
|