mirror of
https://github.com/tiennm99/chambai.git
synced 2026-07-30 02:21:34 +00:00
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.
14 lines
220 B
JSON
14 lines
220 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|