addyosmani / addyosmani/critical
Discover problems
Open
- Dominant language
- JavaScript
- Stars
- 10.3k
- Forks
- 390
- PR merge metrics
- No merged PRs in 30d
Description
Maybe you could benefit from Typescript's static analysis.
```
npm i typescript
npx tsc
```
`tsconfig.json`
```json
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"module": "NodeNext",
"moduleResolution": "nodenext"
},
"files": [
"cli.js",
"index.js",
],
"include": [
"src/*.js"
]
}
```
Contributor guide
Assessment
This issue has not been assessed yet.