Intro On the section 2 of " Effective TypeScript " had been written about setting "noImplicitAny", "strictNullChecks" and etc. And I wanted to know more about the tsconfig.json. What could I do through the settings of it? This time, I wrote about "allowJs", "checkJs", "incremental", and "tsBuildInfoFile". Environment TypeScript: ver. 3.8.2 tsc: ver.1.20150623.0 Resources Compiler Options - TypeScript TypeScript: TSConfig Reference - Docs on every TSConfig option Effective TypeScript Default tsconfig.json When I executed "tsc --init", I could get the default tsconfig.json. tsconfig.json { "compilerOptions": { /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', ...
コメント
コメントを投稿