44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"jsx": "preserve",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"removeComments": false,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@the-order/ui": ["./packages/ui/src"],
|
|
"@the-order/schemas": ["./packages/schemas/src"],
|
|
"@the-order/auth": ["./packages/auth/src"],
|
|
"@the-order/storage": ["./packages/storage/src"],
|
|
"@the-order/crypto": ["./packages/crypto/src"],
|
|
"@the-order/workflows": ["./packages/workflows/src"],
|
|
"@the-order/test-utils": ["./packages/test-utils/src"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "build", ".next", "coverage"]
|
|
}
|
|
|