Files
core2026/packages/logic/tsconfig.json
T

26 lines
716 B
JSON

{
"extends": "../../tsconfig.paths.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"composite": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2023",
"lib": ["ES2024"],
"verbatimModuleSyntax": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": ["src"],
"references": [
{ "path": "../common" }
]
}