create-blocklet 0.7.0 → 0.7.1
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.json +1 -1
- package/templates/react-dapp/api/dev.js +3 -2
- package/templates/react-dapp/package.json +1 -1
- package/templates/react-dapp-ts/api/dev.ts +3 -4
- package/templates/react-dapp-ts/package.json +1 -1
- package/templates/react-dapp-ts/tsconfig.json +5 -2
- package/templates/react-gun-dapp/api/dev.js +3 -2
- package/templates/react-gun-dapp/package.json +1 -1
- package/templates/react-static/package.json +1 -1
- package/templates/solidjs-dapp/api/dev.js +3 -2
- package/templates/solidjs-dapp/package.json +1 -1
- package/templates/solidjs-static/package.json +1 -1
- package/templates/svelte-dapp/api/dev.js +3 -2
- package/templates/svelte-dapp/package.json +1 -1
- package/templates/svelte-static/package.json +1 -1
- package/templates/vue-dapp/api/dev.js +3 -2
- package/templates/vue-dapp/package.json +1 -1
- package/templates/vue-static/package.json +1 -1
- package/templates/vue2-dapp/api/dev.js +3 -2
- package/templates/vue2-dapp/package.json +1 -1
- package/templates/vue2-static/package.json +1 -1
- /package/templates/react-dapp/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/react-dapp-ts/{vite.config.ts → vite.config.mts} +0 -0
- /package/templates/react-gun-dapp/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/react-static/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/solidjs-dapp/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/solidjs-static/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/svelte-dapp/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/svelte-static/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/vue-dapp/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/vue-static/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/vue2-dapp/{vite.config.js → vite.config.mjs} +0 -0
- /package/templates/vue2-static/{vite.config.js → vite.config.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ts-node": {
|
|
3
|
-
"files": true
|
|
3
|
+
"files": true,
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"module": "Node16"
|
|
6
|
+
}
|
|
4
7
|
},
|
|
5
8
|
"compilerOptions": {
|
|
6
9
|
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
@@ -51,7 +54,7 @@
|
|
|
51
54
|
// "removeComments": true, /* Disable emitting comments. */
|
|
52
55
|
"noEmit": true /* Disable emitting files from a compilation. */,
|
|
53
56
|
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
54
|
-
"
|
|
57
|
+
"ignoreDeprecations": "5.0",
|
|
55
58
|
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
56
59
|
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
57
60
|
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|