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
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:
37
tsconfig.eslint.json
Normal file
37
tsconfig.eslint.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user