node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

41
server/node_modules/shiki/samples/prisma.sample generated vendored Normal file
View File

@@ -0,0 +1,41 @@
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
/// Post including an author and content.
model Post {
id Int @default(autoincrement()) @id
content String?
published Boolean @default(false)
author User? @relation(fields: [authorId], references: [id])
authorId Int?
}
// Documentation for this model.
model User {
id Int @default(autoincrement()) @id
email String @unique
name String?
posts Post[]
specialName UserName
test Test
}
/// This is an enum specifying the UserName.
enum UserName {
Fred
Eric
}
// This is a test enum.
enum Test {
TestUno
TestDue
}
// taken from https://github.com/prisma/language-tools/blob/master/packages/vscode/testFixture/hover.prisma