release: WRNexusJS 0.6.0

This commit is contained in:
2026-08-01 07:42:52 +05:30
parent 042f563744
commit a434d66ca1
85 changed files with 13360 additions and 3863 deletions
+18
View File
@@ -83,6 +83,24 @@ const config: AppConfig = {
// origin: ["http://localhost:5173"],
// },
// },
imports: { mode: "compatible", autoImport: true, aliases: { "@": "./app" } },
types: {
strict: false,
noImplicitAny: false,
strictNullChecks: true,
checkTemplates: true,
checkComponentProps: true,
generateDeclarations: true,
globalTypes: "./app/types/global.d.ts",
},
functions: { legacyDefaultRuntime: "current" },
stores: { strictMutations: true, persistence: true },
compatibility: {
legacyEmit: true,
legacyEventProps: true,
legacyComponentDiscovery: true,
stringLayouts: true,
},
};
export default config;