experiment with new approach

This commit is contained in:
Matt Hill
2026-03-12 12:27:34 -06:00
parent 98b429fcad
commit 082254575b
511 changed files with 44511 additions and 0 deletions

36
site/server/tsconfig.json Normal file
View File

@@ -0,0 +1,36 @@
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"useDefineForClassFields": false,
"strictPropertyInitialization": false,
"target": "es2019",
"strict": true,
"sourceMap": false,
"skipLibCheck": true,
"outDir": "./dist",
"baseUrl": "./"
},
"include": ["src/**/*.ts"],
"exclude": [
"node_modules",
"migration.ts",
"src/plugins/**/ui/*",
"admin-ui",
"src/plugins/**/dashboard/*",
"src/gql/*",
"vite.*.*ts"
],
"ts-node": {
"files": true
},
"references": [
{
"path": "./tsconfig.dashboard.json"
}
]
}