Skip to content

Commit 94fe311

Browse files
committed
fix
1 parent 2b8b849 commit 94fe311

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

apps/entropy-tester/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"cli/**/*"
1717
],
1818
"scripts": {
19-
"build": "tsc",
19+
"build": "tsc --project tsconfig.build.json",
2020
"fix:format": "prettier --write .",
2121
"fix:lint": "eslint --fix .",
2222
"test:format": "prettier --check .",
2323
"test:lint": "eslint . --max-warnings 0",
2424
"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"
2727
},
2828
"repository": {
2929
"type": "git",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "./dist",
5+
"noEmit": false
6+
}
7+
}

apps/entropy-tester/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
22
"extends": "@cprussin/tsconfig/nextjs.json",
3-
"compilerOptions": {
4-
"outDir": "./dist",
5-
"noEmit": false
6-
},
73
"include": ["**/*.ts"],
84
"exclude": ["node_modules"]
95
}

0 commit comments

Comments
 (0)