We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d7963 commit 9fc28c8Copy full SHA for 9fc28c8
package.json
@@ -1,7 +1,7 @@
1
{
2
"scripts": {
3
- "compile": "tsc --project .",
4
- "compile:check": "tsc --project . --noEmit",
+ "compile": "tsc --project ./src",
+ "compile:check": "yarn compile --noEmit",
5
"test": "jest",
6
"test:watch": "jest --watch",
7
"start": "node dist/index.js",
src/tsconfig.json
@@ -0,0 +1,3 @@
+{
+ "extends": "../tsconfig.json"
+}
tsconfig.json
@@ -63,5 +63,5 @@
63
/* Advanced Options */
64
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
65
},
66
- "exclude": ["dist/*", "test/*"]
+ "exclude": ["dist/*"]
67
}
0 commit comments