15fef916f6
* prisma extension fixes WIP * More prisma stuff * more prisma stuff * remove changelog * upgrade github workflows to use node 20.19 because installing prisma@7 breaks with lower versions * Don't use generate for the prisma reference projects * make sure it works if no mode is passed in
16 lines
370 B
JSON
16 lines
370 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"customConditions": ["@triggerdotdev/source"],
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable"],
|
|
"noEmit": true
|
|
},
|
|
"include": ["./src/**/*.ts", "trigger.config.ts"]
|
|
}
|