Hi all! We have a typescript-based monorepo that uses Turbo/Pnpm/etc
Our primary reason for coming across Deno is that it seems to be the best supported way to use Typescript in a Jupyter notebook. We'd like set up a notebooks/ subfolder in the apps/* folder of the project and do queries there
I haven't been able to set this up (maybe due to inexperience with Deno). For example, both of the following commands fail:
// Importing from a package in node_modulesimport { PrismaClient } from '@prisma/client';// Importing from a monorepo packageimport { soemthing } from '@myapp/api';
// Importing from a package in node_modulesimport { PrismaClient } from '@prisma/client';// Importing from a monorepo packageimport { soemthing } from '@myapp/api';
I've tried both in the root of the project and in the notebooks/* sub-folder