File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "ignore" : [" node_modules/*" ],
3
- "watch" : [" ./src" , " .env.development" ],
4
- "exec" : " tsc && tsc-alias && node dist/index.js" ,
5
- "env" : {
6
- "TZ" : " Asia/Seoul" ,
7
- "NODE_ENV" : " development"
8
- }
9
- }
2
+ "ignore" : [" node_modules" ],
3
+ "watch" : [" src" , " .env.development" ],
4
+ "ext" : " js,json,ts" ,
5
+ "exec" : " ts-node --require tsconfig-paths/register src" ,
6
+ "env" : {
7
+ "TZ" : " Asia/Seoul" ,
8
+ "NODE_ENV" : " development"
9
+ }
10
+ }
Original file line number Diff line number Diff line change 7
7
"main" : " app.js" ,
8
8
"scripts" : {
9
9
"preinstall" : " npx only-allow pnpm" ,
10
- "start" : " npx tsc && tsc-alias && npx nodemon" ,
10
+ "start" : " nodemon" ,
11
11
"mocha" : " cross-env TZ='Asia/Seoul' NODE_ENV=test mocha --require ts-node/register --require tsconfig-paths/register --recursive --reporter spec --exit" ,
12
12
"test" : " npm run sample && cross-env TZ='Asia/Seoul' npm run mocha" ,
13
13
"build" : " tsc && tsc-alias" ,
You can’t perform that action at this time.
0 commit comments