File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 16
16
" cli/**/*"
17
17
],
18
18
"scripts" : {
19
- "build" : " tsc" ,
19
+ "build" : " tsc --project tsconfig.build.json " ,
20
20
"fix:format" : " prettier --write ." ,
21
21
"fix:lint" : " eslint --fix ." ,
22
22
"test:format" : " prettier --check ." ,
23
23
"test:lint" : " eslint . --max-warnings 0" ,
24
24
"test:types" : " tsc" ,
25
- "dev: start" : " tsc && node cli/run.js" ,
26
- "start" : " node cli/run.js"
25
+ "start:dev " : " tsc --project tsconfig.build.json && node cli/run.js" ,
26
+ "start:prod " : " node cli/run.js"
27
27
},
28
28
"repository" : {
29
29
"type" : " git" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " ./dist" ,
5
+ "noEmit" : false
6
+ }
7
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " @cprussin/tsconfig/nextjs.json" ,
3
- "compilerOptions" : {
4
- "outDir" : " ./dist" ,
5
- "noEmit" : false
6
- },
7
3
"include" : [" **/*.ts" ],
8
4
"exclude" : [" node_modules" ]
9
5
}
You can’t perform that action at this time.
0 commit comments