Closed HurSungYun closed 5 years ago
My tsconfig.json use strictBindCallApply option that added in Typescript 3.2.
tsconfig.json
strictBindCallApply
{ "compilerOptions": { "noImplicitUseStrict": true, "module": "commonjs", "outDir": "gen", "rootDir": "src", "noImplicitAny": false, "noUnusedLocals": false, "noUnusedParameters": false, "strictBindCallApply": true, "resolveJsonModule": true, "target": "es2017", "lib": [ "es2017", "scripthost" ], "inlineSourceMap": true, "allowJs": true } }
$ ts-unused-exports ./tsconfig.json > Cannot parse './tsconfig.json'. > [{"messageText":"Unknown compiler option 'strictBindCallApply'.","category":1,"code":5023}]
I believe Typescript version should be updated for convenience.
Done in v 3.0.0. Closing - thank you for pointing this out.
My
tsconfig.json
usestrictBindCallApply
option that added in Typescript 3.2.I believe Typescript version should be updated for convenience.