@build-script/single-dog-asset 1.0.22 → 1.0.24
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.
- package/package/npmignore +5 -2
- package/package/tsconfig.no-lib.json +21 -4
- package/package.json +3 -4
package/package/npmignore
CHANGED
|
@@ -2,13 +2,20 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "ESNext",
|
|
4
4
|
"module": "CommonJS",
|
|
5
|
-
"moduleResolution": "
|
|
5
|
+
"moduleResolution": "NodeNext",
|
|
6
|
+
"resolvePackageJsonExports": true,
|
|
7
|
+
"resolvePackageJsonImports": true,
|
|
6
8
|
"allowJs": false,
|
|
7
9
|
"allowSyntheticDefaultImports": true,
|
|
8
10
|
"allowUnreachableCode": false,
|
|
9
11
|
"allowUnusedLabels": false,
|
|
12
|
+
"allowArbitraryExtensions": false,
|
|
13
|
+
"allowImportingTsExtensions": false,
|
|
14
|
+
"allowUmdGlobalAccess": false,
|
|
15
|
+
"exactOptionalPropertyTypes": true,
|
|
10
16
|
"alwaysStrict": true,
|
|
11
|
-
"
|
|
17
|
+
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
18
|
+
"moduleDetection": "auto",
|
|
12
19
|
"checkJs": false,
|
|
13
20
|
"composite": false,
|
|
14
21
|
"declaration": true,
|
|
@@ -17,11 +24,14 @@
|
|
|
17
24
|
"emitBOM": false,
|
|
18
25
|
"emitDeclarationOnly": false,
|
|
19
26
|
"emitDecoratorMetadata": true,
|
|
27
|
+
"noEmitHelpers": false,
|
|
28
|
+
"noEmitOnError": false,
|
|
20
29
|
"esModuleInterop": true,
|
|
21
30
|
"experimentalDecorators": true,
|
|
22
31
|
"forceConsistentCasingInFileNames": true,
|
|
23
32
|
"inlineSourceMap": false,
|
|
24
33
|
"inlineSources": false,
|
|
34
|
+
"isolatedModules": true,
|
|
25
35
|
"keyofStringsOnly": false,
|
|
26
36
|
"lib": [
|
|
27
37
|
"ESNext",
|
|
@@ -32,11 +42,16 @@
|
|
|
32
42
|
"ESNext.String",
|
|
33
43
|
"ESNext.WeakRef"
|
|
34
44
|
],
|
|
35
|
-
"noEmitOnError": false,
|
|
36
45
|
"noImplicitThis": true,
|
|
37
46
|
"noImplicitAny": true,
|
|
47
|
+
"noImplicitOverride": true,
|
|
48
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
49
|
+
"noStrictGenericChecks": false,
|
|
50
|
+
"noUncheckedIndexedAccess": true,
|
|
38
51
|
"noUnusedLocals": true,
|
|
39
52
|
"noUnusedParameters": true,
|
|
53
|
+
"verbatimModuleSyntax": true,
|
|
54
|
+
"useUnknownInCatchVariables": true,
|
|
40
55
|
"preserveConstEnums": true,
|
|
41
56
|
"pretty": true,
|
|
42
57
|
"typeRoots": ["../node_modules/@types", "../node_modules"],
|
|
@@ -54,6 +69,8 @@
|
|
|
54
69
|
"importHelpers": true,
|
|
55
70
|
"noImplicitReturns": true,
|
|
56
71
|
"noFallthroughCasesInSwitch": true,
|
|
57
|
-
"incremental": false
|
|
72
|
+
"incremental": false,
|
|
73
|
+
"jsxImportSource": "react",
|
|
74
|
+
"jsx": "react-jsx"
|
|
58
75
|
}
|
|
59
76
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@build-script/single-dog-asset",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "https://github.com/GongT/baobao",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"tslib": "^2.4.
|
|
7
|
+
"tslib": "^2.4.1"
|
|
8
8
|
},
|
|
9
|
-
"tslib": "^1.10.0",
|
|
10
|
-
"ttypescript": "^1.5.10",
|
|
11
9
|
"scripts": {
|
|
12
10
|
"build": "",
|
|
11
|
+
"build:watch": "",
|
|
13
12
|
"clean": ""
|
|
14
13
|
}
|
|
15
14
|
}
|