Skip to content

Commit 4e2b2c8

Browse files
refactor(*): move tsconfig.* files into scripts/
1 parent 8574aaf commit 4e2b2c8

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@
5757
"build:clean": "rimraf build",
5858
"build:clean-esm5": "rimraf ./build/esm5",
5959
"build:clean-cjs": "rimraf ./build/cjs",
60-
"build:esm5": "npm run build:clean-esm5 && tsc --project tsconfig.prod.esm5.json",
61-
"build:cjs": "npm run build:clean-cjs && tsc --project tsconfig.prod.cjs.json",
60+
"build:esm5": "npm run build:clean-esm5 && tsc --project ./scripts/tsconfig/tsconfig.prod.esm5.json",
61+
"build:cjs": "npm run build:clean-cjs && tsc --project ./scripts/tsconfig/tsconfig.prod.cjs.json",
6262
"build:rollup": "npm run build:esm5 && rollup --config rollup.config.mjs",
6363
"build:umd": "npm run build:esm5",
64-
"build:types": "tsc --project tsconfig.prod.types.json",
64+
"build:types": "tsc --project ./scripts/tsconfig/tsconfig.prod.types.json",
6565
"docs:website": "pushd website && npm run build && popd",
6666
"docs:website-prod": "node ./scripts/publishDocs.mjs",
6767
"prettier:fix": "prettier --write \"**/*.{ts,md,mts,mjs,js,cjs}\"",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
// This TS config is added for VS Code, so it understand the test files are
33
// using the tsconfig.spec.json file instead of the default one.
4-
"extends": "../tsconfig.spec.json",
4+
"extends": "../scripts/tsconfig/tsconfig.spec.json",
55
}

0 commit comments

Comments
 (0)