mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-24 17:44:21 +03:00
add esnext warning to main.wasp
This commit is contained in:
parent
5c02ce32cb
commit
148bdc205d
@ -49,7 +49,8 @@ page SignupPage {
|
||||
|
||||
query getTasks {
|
||||
// We specify the JS implementation of our query (which is an async JS function)
|
||||
// which can be found in `server/queries.js` as a named export `getTasks`.
|
||||
// Even if you use TS and have a queries.ts file, you will still need to import it using the .js extension.
|
||||
// see here for more info: https://wasp-lang.dev/docs/tutorials/todo-app/03-listing-tasks#wasp-declaration
|
||||
fn: import { getTasks } from "@server/queries.js",
|
||||
// We tell Wasp that this query is doing something with the `Task` entity. With that, Wasp will
|
||||
// automatically refresh the results of this query when tasks change.
|
||||
|
Loading…
Reference in New Issue
Block a user