Skip to content

Commit f0659dc

Browse files
committed
chore: remove redundant tsconfig.json in src
1 parent 1ffcd83 commit f0659dc

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
"scripts": {
2727
"build": "run-p build:*",
2828
"build:r": "r",
29-
"build:ts": "tsc -b src",
30-
"lint": "eslint src --ext md,js,ts -f friendly",
29+
"build:ts": "tsc -b",
30+
"lint": "run-p lint:*",
31+
"lint:es": "eslint src --ext md,js,ts -f friendly",
32+
"lint:tsc": "tsc --noEmit",
3133
"pretest": "r",
3234
"test": "eslint tests/**/*.{ts,tsx} -f friendly",
3335
"type-coverage": "type-coverage --cache --detail --ignore-catch --strict"

src/tsconfig.json

-8
This file was deleted.

tsconfig.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"extends": "@1stg/tsconfig/tsconfig"
2+
"extends": "@1stg/tsconfig/lib",
3+
"compilerOptions": {
4+
"baseUrl": ".",
5+
"outDir": "lib"
6+
},
7+
"include": ["src"]
38
}

0 commit comments

Comments
 (0)