zuby 1.0.35 → 1.0.36

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 CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "zuby",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "Zuby.js is framework for building SPA apps using Vite",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "release": "cd ./dist && npm publish --access public && cd ..",
9
- "build": "rm -rf dist/ && tsc && cp -rf package.json README.md src/examples dist/ && npm run bundle-server",
9
+ "build": "rm -rf dist/ && tsc && cp -rf package.json README.md src/examples src/tsconfigs dist/ && npm run bundle-server",
10
10
  "bundle-server": "esbuild src/server/index.ts --bundle --minify=false --platform=node --format=esm --outfile=dist/server/index.js",
11
11
  "watch-build": "npm run build && tsc --watch",
12
12
  "push-build": "npm run build && cd dist && yalc push --force && cd ..",
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "target": "ESNext",
5
+ "module": "ESNext",
6
+ "moduleResolution": "Bundler",
7
+ "allowImportingTsExtensions": true,
8
+ "resolveJsonModule": true,
9
+ "verbatimModuleSyntax": true,
10
+ "isolatedModules": true,
11
+ "noEmit": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "esModuleInterop": true,
14
+ "skipLibCheck": true,
15
+ "allowJs": true,
16
+ "composite": true,
17
+ "useDefineForClassFields": true,
18
+ "lib": ["ESNext", "DOM", "DOM.Iterable"]
19
+ }
20
+ }