Files
lifeforge/apps/apiExplorer/tsconfig.json
melvinchia3636 48210f2d71 feat(server): move all localization files into client
Former-commit-id: 75c6fa78efdb42f7bd65c59cb4e3467aabadcad5 [formerly d9e692745e63aa781d7cf12908d792b0deacdfb1] [formerly 2b3d798425ffcd7064fac640433366b7a574fd29 [formerly d9856e49f19341a8413d5b9391fac940305b5678]]
Former-commit-id: 8389997051cd928e4b60287e42177e0f233575b8 [formerly 429a8e32277f66a69bb00368765dc719a8da5313]
Former-commit-id: 12a8c5cd96e1bf0880c509b54bc34b7bba76e976
2025-09-08 19:53:46 +08:00

33 lines
658 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"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
},
"include": [
"src"
],
"references": [
{
"path": "../../server/tsconfig.json"
}
]
}