@checkdigit/typescript-config 3.2.0 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![MIT License](https://img.shields.io/github/license/checkdigit/typescript-config)](https://github.com/checkdigit/typescript-config/blob/master/LICENSE.txt)
4
4
 
5
- Copyright (c) 2022 [Check Digit, LLC](https://checkdigit.com)
5
+ Copyright (c) 2022-2023 [Check Digit, LLC](https://checkdigit.com)
6
6
 
7
7
  ### Introduction
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkdigit/typescript-config",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "Check Digit standard Typescript configuration",
5
5
  "prettier": "@checkdigit/prettier-config",
6
6
  "engines": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "peerDependencies": {
10
10
  "@types/node": ">=16",
11
- "typescript": ">=4.9.3 <5.0"
11
+ "typescript": ">=5.0.2 <5.1"
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
@@ -31,8 +31,8 @@
31
31
  "ci:style": "npm run prettier"
32
32
  },
33
33
  "devDependencies": {
34
- "@checkdigit/prettier-config": "^3.1.0",
35
- "rimraf": "^3.0.2"
34
+ "@checkdigit/prettier-config": "^3.3.0",
35
+ "rimraf": "^4.4.0"
36
36
  },
37
37
  "files": [
38
38
  "tsconfig.json",
package/tsconfig.json CHANGED
@@ -4,6 +4,7 @@
4
4
  "target": "es2022",
5
5
  "lib": ["esnext", "dom", "webworker"],
6
6
  "sourceMap": true,
7
+ "inlineSources": true,
7
8
  "outDir": "build",
8
9
  "declaration": true,
9
10
  "removeComments": false,
@@ -17,7 +18,7 @@
17
18
  "noUnusedLocals": true,
18
19
  "noUnusedParameters": true,
19
20
  "alwaysStrict": true,
20
- "importsNotUsedAsValues": "error",
21
+ "verbatimModuleSyntax": false,
21
22
  "noFallthroughCasesInSwitch": true,
22
23
  "forceConsistentCasingInFileNames": true,
23
24
  "emitDecoratorMetadata": true,