Files
chambai/jsconfig.json
T
tiennm99 87642bdea9 refactor: convert TypeScript to JavaScript with JSDoc type annotations
Remove TypeScript from the project and convert all .ts/.tsx files to
.js/.jsx. Add JSDoc @typedef and @param annotations to all lib functions
for type checking via jsconfig.json checkJs. Delete tsconfig.json and
src/types/ directory, replace with src/lib/types.js JSDoc definitions.
2026-04-12 23:35:33 +07:00

14 lines
220 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"checkJs": true,
"strict": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}