mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 14:41:41 +03:00
71038c277d
* Support typing backend queries * Implement types for actions and extract entities * Automatically generate specific operation types * Eta reduce functions * Add CR fixes * Add type to imports and exports for entities * Change query extensions back to .js * Tidy up default arguments for operation types * Don't throw syntax error when there are no entities * Update e2e tests * Fix formatting * Address CR comments * Fix typo in comment * Add duplication comment * Update e2e tests * Fix duplication comments * Update changelog and bump project version * Update changelog * Update e2e tests
12 lines
192 B
JavaScript
Generated
12 lines
192 B
JavaScript
Generated
app waspCompile {
|
|
wasp: {
|
|
version: "^0.8.1"
|
|
},
|
|
title: "waspCompile"
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
component: import Main from "@client/MainPage"
|
|
}
|