Initial Upload
Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled

This commit is contained in:
2025-12-17 12:32:50 +13:00
commit 3015f48118
471 changed files with 141143 additions and 0 deletions

37
tsconfig.eslint.json Normal file
View File

@@ -0,0 +1,37 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"jsx": "react-jsx",
"types": ["node"],
"baseUrl": ".",
"paths": {
"@tracearr/shared": ["./packages/shared/src"],
"@tracearr/shared/*": ["./packages/shared/src/*"]
}
},
"include": [
"apps/server/src/**/*.ts",
"apps/web/src/**/*.ts",
"apps/web/src/**/*.tsx",
"apps/mobile/**/*.ts",
"apps/mobile/**/*.tsx",
"packages/shared/src/**/*.ts",
"packages/test-utils/src/**/*.ts",
"*.config.ts",
"*.config.js",
"*.config.mjs"
],
"exclude": [
"node_modules",
"**/node_modules",
"**/dist",
"**/build",
"**/.turbo",
"**/coverage",
"**/.expo"
]
}