Skip to content

Commit 9f0102d

Browse files
committed
Refactor package.json, tsconfig.json
1 parent f41b95b commit 9f0102d

File tree

2 files changed

+24
-25
lines changed

2 files changed

+24
-25
lines changed

package.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -59,30 +59,16 @@
5959
"build": "tsc --build --clean && tsc --build && type-coverage",
6060
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
6161
"test-api": "node --conditions development test/index.js",
62-
"test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
62+
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
6363
"test": "npm run build && npm run format && npm run test-coverage"
6464
},
6565
"prettier": {
66-
"tabWidth": 2,
67-
"useTabs": false,
68-
"singleQuote": true,
6966
"bracketSpacing": false,
7067
"semi": false,
71-
"trailingComma": "none"
72-
},
73-
"xo": {
74-
"prettier": true,
75-
"rules": {
76-
"unicorn/prefer-switch": "off"
77-
},
78-
"overrides": [
79-
{
80-
"files": "test/**/*.js",
81-
"rules": {
82-
"no-await-in-loop": "off"
83-
}
84-
}
85-
]
68+
"singleQuote": true,
69+
"tabWidth": 2,
70+
"trailingComma": "none",
71+
"useTabs": false
8672
},
8773
"remarkConfig": {
8874
"plugins": [
@@ -92,6 +78,21 @@
9278
"typeCoverage": {
9379
"atLeast": 100,
9480
"detail": true,
81+
"ignoreCatch": true,
9582
"strict": true
83+
},
84+
"xo": {
85+
"overrides": [
86+
{
87+
"files": "test/**/*.js",
88+
"rules": {
89+
"no-await-in-loop": "off"
90+
}
91+
}
92+
],
93+
"prettier": true,
94+
"rules": {
95+
"unicorn/prefer-switch": "off"
96+
}
9697
}
9798
}

tsconfig.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
{
2-
"include": ["**/**.js"],
3-
"exclude": ["coverage/", "node_modules/"],
42
"compilerOptions": {
53
"checkJs": true,
4+
"customConditions": ["development"],
65
"declaration": true,
76
"emitDeclarationOnly": true,
87
"exactOptionalPropertyTypes": true,
9-
"forceConsistentCasingInFileNames": true,
108
"lib": ["es2020"],
119
"module": "node16",
12-
"newLine": "lf",
13-
"skipLibCheck": true,
1410
"strict": true,
1511
"target": "es2020"
16-
}
12+
},
13+
"exclude": ["coverage/", "node_modules/"],
14+
"include": ["**/*.js"]
1715
}

0 commit comments

Comments
 (0)