Files
tool/tsconfig.json
2024-04-23 17:53:55 -05:00

25 lines
500 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"strictNullChecks": true,
"skipLibCheck": true,
"incremental": true,
"composite": true,
},
"references": [
{
"path": "./packages/tool"
},
{
"path": "./examples/01_node"
}
]
}