Files
lifeforge/docs/tsconfig.json
Melvin Chia 22a45b5378 feat(docs): split changelog versions into different files and implement dynamic loading mechanism
Former-commit-id: ac12fdf3efe5d8947a768ddde7edad13fcdac487 [formerly fa5dc0b809a1f78d05a10cd92b973acc4d8a3241] [formerly ecfe8e86a78c6b6586a82d56183b456eb2ee7936 [formerly 23c0cb11df48695939b2110a0407f17da6c09feb]]
Former-commit-id: b3f448110de3e72fff3242d52597497887e4611d [formerly b4c2a73fc0151c7de62bfe196c8ba30aee01b0bc]
Former-commit-id: c11621e9b83af8023e69ed2826cbb0881be9205d
2025-10-28 06:21:13 +08:00

38 lines
722 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2024",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"./src/**/*"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}