-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix ci and pause coverage for bugs
- Loading branch information
Showing
5 changed files
with
28 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,8 @@ | ||
/** | ||
* Minimal TypeScript configuration for Node.js | ||
* - To choose between native ESM or CJS modules, simply change the "type" option in package.json. | ||
* ESM is the default option for the spence-s-starter-template, but the tscofig is set up to use commonjs when the package.json field is changed to "type": "commonjs", or removed. | ||
*/ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "./dist", | ||
"target": "ES2022", | ||
"module": "Node16", | ||
"rootDir": "./lib", | ||
"strict": true, | ||
"declaration": true, | ||
"sourceMap": true, | ||
"paths": { | ||
"koa-compose": ["./lib/types/koa-compose.d.ts"], | ||
"cache-content-type": ["./lib/types/cache-content-type.d.ts"], | ||
"delegates": ["./lib/types/delegates.d.ts"] | ||
} | ||
"rootDir": "./lib" | ||
}, | ||
"include": ["**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
/** | ||
* Minimal TypeScript configuration for Node.js | ||
* - To choose between native ESM or CJS modules, simply change the "type" option in package.json. | ||
* ESM is the default option for the spence-s-starter-template, but the tscofig is set up to use commonjs when the package.json field is changed to "type": "commonjs", or removed. | ||
*/ | ||
{ | ||
"compilerOptions": { | ||
"outDir": "./dist", | ||
"target": "ES2022", | ||
"target": "ES2023", | ||
"module": "Node16", | ||
"rootDir": ".", | ||
"strict": true, | ||
"declaration": true, | ||
"sourceMap": true, | ||
"paths": { | ||
"koa-compose": ["./lib/types/koa-compose.d.ts"], | ||
"cache-content-type": ["./lib/types/cache-content-type.d.ts"], | ||
"delegates": ["./lib/types/delegates.d.ts"] | ||
"cache-content-type": ["./lib/types/cache-content-type.d.ts"] | ||
} | ||
} | ||
} |