effect-api/tsconfig.json

62 lines
1.6 KiB
JSON

{
"compilerOptions": {
"incremental": true,
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"target": "ESNext",
"lib": ["ESNext", "DOM"],
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"removeComments": false,
"newLine": "lf",
"noErrorTruncation": true,
"strict": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": false,
"noPropertyAccessFromIndexSignature": false,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"importHelpers": false,
"skipLibCheck": false,
"paths": {
"@make-api/api": ["./packages/api/src/index.ts"],
"@make-api/api/*": ["./packages/api/src/*"],
"@make-api/backend": ["./packages/backend/src/index.ts"],
"@make-api/backend/*": ["./packages/backend/src/*"],
"@make-api/frontend": ["./packages/frontend/src/index.ts"],
"@make-api/frontend/*": ["./packages/frontend/src/*"],
}
}
}