@build-script/single-dog-asset 1.0.30 → 1.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  # Rush files
2
2
  common/changes/
3
- common/scripts/
3
+ common/scripts/install-run*
4
4
  CHANGELOG.*
5
5
 
6
6
  # Package manager files
@@ -12,6 +12,7 @@ module.exports = {
12
12
  requirePragma: false,
13
13
  insertPragma: false,
14
14
  endOfLine: 'lf',
15
+ useTabs: true,
15
16
  overrides: [
16
17
  {
17
18
  files: ['*.yaml', '*.yml'],
@@ -5,6 +5,6 @@
5
5
  "dependencies": {
6
6
  "@build-script/rush-tools": "latest",
7
7
  "@build-script/single-dog-asset": "latest",
8
- "@build-script/poormans-package-change": "latest"
8
+ "@build-script/node-package-tools": "latest"
9
9
  }
10
10
  }
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "./tsconfig.legacy.json",
3
+ "compilerOptions": {
4
+ "module": "CommonJS"
5
+ }
6
+ }
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "target": "ESNext",
4
- "module": "CommonJS",
5
- "moduleResolution": "Node",
6
- "resolvePackageJsonExports": false,
7
- "resolvePackageJsonImports": false,
4
+ "module": "ESNext",
5
+ "moduleResolution": "Bundler",
6
+ "resolvePackageJsonExports": true,
7
+ "resolvePackageJsonImports": true,
8
+ "resolveJsonModule": true,
8
9
  "allowJs": false,
9
10
  "allowSyntheticDefaultImports": true,
10
11
  "allowUnreachableCode": false,
@@ -14,18 +15,19 @@
14
15
  "allowUmdGlobalAccess": false,
15
16
  "exactOptionalPropertyTypes": false,
16
17
  "alwaysStrict": true,
17
- "assumeChangesOnlyAffectDirectDependencies": true,
18
- "moduleDetection": "auto",
18
+ "assumeChangesOnlyAffectDirectDependencies": false,
19
+ "moduleDetection": "force",
19
20
  "checkJs": false,
20
- "composite": false,
21
+ "composite": true,
21
22
  "declaration": true,
22
23
  "declarationMap": true,
23
24
  "downlevelIteration": true,
24
25
  "emitBOM": false,
25
26
  "emitDeclarationOnly": false,
26
27
  "emitDecoratorMetadata": false,
28
+ "importHelpers": true,
27
29
  "noEmitHelpers": false,
28
- "noEmitOnError": false,
30
+ "noEmitOnError": true,
29
31
  "esModuleInterop": true,
30
32
  "experimentalDecorators": false,
31
33
  "forceConsistentCasingInFileNames": true,
@@ -58,7 +60,7 @@
58
60
  "types": [],
59
61
  "removeComments": false,
60
62
  "sourceMap": true,
61
- "stripInternal": true,
63
+ "stripInternal": false,
62
64
  "strictBindCallApply": true,
63
65
  "strict": true,
64
66
  "strictFunctionTypes": true,
@@ -66,10 +68,9 @@
66
68
  "strictPropertyInitialization": true,
67
69
  "useDefineForClassFields": true,
68
70
  "newLine": "lf",
69
- "importHelpers": true,
70
71
  "noImplicitReturns": true,
71
72
  "noFallthroughCasesInSwitch": true,
72
- "incremental": false,
73
+ "incremental": true,
73
74
  "jsxImportSource": "react",
74
75
  "jsx": "react-jsx"
75
76
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "module": "ESNext",
5
+ "moduleResolution": "Node10",
6
+ "resolvePackageJsonExports": false,
7
+ "resolvePackageJsonImports": false
8
+ }
9
+ }
package/package.json CHANGED
@@ -1,13 +1,10 @@
1
1
  {
2
2
  "name": "@build-script/single-dog-asset",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "license": "MIT",
5
5
  "repository": "https://github.com/GongT/baobao",
6
- "dependencies": {
7
- "tslib": "^2.6.0"
8
- },
9
6
  "devDependencies": {
10
- "@types/prettier": "^2.7.3"
7
+ "prettier": "^3.3.3"
11
8
  },
12
9
  "scripts": {
13
10
  "build": "",