15 lines
359 B
Bash
Executable File
15 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
check_dir="$DIR"
|
|
|
|
source "$check_dir"/../framework/shims/common
|
|
source "$check_dir"/../framework/shims/node.common
|
|
|
|
# $ROOT/cmd pnpm tsc --lib ES2023 --esModuleInterop -w $check_dir/app.ts
|
|
# $ROOT/cmd pnpm tsc -w $check_dir/app.ts
|
|
$ROOT/cmd pnpm tsc --watch --project ./tsconfig.json
|