Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 72f6bf6

Browse files
committed
changed the tsconfig setup to support ts in spec/
1 parent a685a58 commit 72f6bf6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"README.md"
1111
],
1212
"scripts": {
13-
"build": "tsc",
13+
"build": "tsc -p tsconfig.build.json",
1414
"test": "jest",
1515
"prepublishOnly": "npm run build"
1616
},

tsconfig.build.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src/**/*"]
4+
}

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"include": ["src/**/*"],
32
"compilerOptions": {
43
/* Visit https://aka.ms/tsconfig.json to read more about this file */
54

0 commit comments

Comments
 (0)