miqro 6.0.10 → 6.0.11

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.
@@ -34,7 +34,7 @@ export default async (req: ServerRequest | null, res: ServerResponse | null) =>
34
34
  sufix: ".api.ts",
35
35
  displayName: ".api.ts file",
36
36
  language: "typescript",
37
- template: () => `import { ServerRequest, ServerResponse, APIRoute } from "miqro"
37
+ template: () => `import { ServerRequest, ServerResponse, APIRoute } from "miqro";
38
38
 
39
39
  export default {
40
40
  path: "/health",
@@ -85,7 +85,7 @@ export default {
85
85
  sufix: ".ts",
86
86
  displayName: "migration file",
87
87
  language: "typescript",
88
- template: () => `import { Migration } from "@miqro/query";
88
+ template: () => `import { Migration } from "miqro";
89
89
 
90
90
  export default {
91
91
  up: async (db, logger) => {
@@ -260,14 +260,14 @@ export default {
260
260
  template: () => `{
261
261
  "compilerOptions": {
262
262
  "target": "es2022",
263
- "module": "es2022",
263
+ "noEmit": true,
264
+ "module": "NodeNext",
265
+ "moduleResolution": "nodenext",
264
266
  "lib": ["es2021", "dom"],
265
267
  "jsx": "react",
266
268
  "jsxFactory": "JSX.createElement",
267
269
  "jsxFragmentFactory": "JSX.Fragment",
268
270
  "typeRoots": [
269
- "./node_modules/",
270
- "./node_modules/@types",
271
271
  "./.types"
272
272
  ]
273
273
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miqro",
3
- "version": "6.0.10",
3
+ "version": "6.0.11",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "build/esm/src/lib.js",