- Abstract shared sql code to a new drizzle package - Adds sqlite package, not ready to publish until drizzle patches some issues - Add `transactionOptions` to allow customizing or disabling db transactions - Adds "experimental" label to the `schemaName` property until drizzle patches an issue
42 lines
826 B
JSON
42 lines
826 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
// Make sure typescript knows that this module depends on their references
|
|
"noEmit": false
|
|
/* Do not emit outputs. */,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist"
|
|
/* Specify an output folder for all emitted files. */,
|
|
"rootDir": "./src"
|
|
/* Specify the root folder within your source files. */
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"tests",
|
|
"test",
|
|
"node_modules",
|
|
"eslint.config.js",
|
|
"src/**/*.spec.js",
|
|
"src/**/*.spec.jsx",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.spec.tsx"
|
|
],
|
|
"include": [
|
|
"src",
|
|
"src/**/*.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../payload"
|
|
},
|
|
{
|
|
"path": "../translations"
|
|
},
|
|
{
|
|
"path": "../drizzle"
|
|
}
|
|
]
|
|
}
|