Skip to content

Commit f635c36

Browse files
committed
Update tsconfig.json
1 parent 35cebc9 commit f635c36

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,14 @@
4848
"prettier": "^2.0.0",
4949
"remark-cli": "^11.0.0",
5050
"remark-preset-wooorm": "^9.0.0",
51-
"rimraf": "^3.0.0",
5251
"tape": "^5.0.0",
5352
"type-coverage": "^2.0.0",
5453
"typescript": "^4.0.0",
5554
"xo": "^0.53.0"
5655
},
5756
"scripts": {
5857
"prepack": "npm run build && npm run format",
59-
"build": "rimraf \"{lib,test}/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
58+
"build": "tsc --build --clean && tsc --build && type-coverage",
6059
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
6160
"test-api": "node --conditions development test/index.js",
6261
"test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",

tsconfig.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
{
2-
"include": ["lib/**/*.js", "test/index.js", "*.js"],
2+
"include": ["**/**.js"],
3+
"exclude": ["coverage/", "node_modules/", "test/fixtures/"],
34
"compilerOptions": {
4-
"target": "es2022",
5-
"lib": ["es2022"],
6-
"module": "esnext",
7-
"moduleResolution": "node",
8-
"allowJs": true,
95
"checkJs": true,
106
"declaration": true,
117
"emitDeclarationOnly": true,
12-
"allowSyntheticDefaultImports": true,
8+
"exactOptionalPropertyTypes": true,
9+
"forceConsistentCasingInFileNames": true,
10+
"lib": ["es2020"],
11+
"module": "node16",
12+
"newLine": "lf",
1313
"skipLibCheck": true,
14-
"strict": true
14+
"strict": true,
15+
"target": "es2020",
16+
"jsx": "preserve"
1517
}
1618
}

0 commit comments

Comments
 (0)