TypeScritpを勉強しているのでがtsc
でコンパイル後のjs
ファイルの冒頭に"use strict"
とう文字が消えません.
tsconfig.json
ではstrict
をfalse
にしています.特別学習には影響はないのですが,このメッセージは消すことができないのでしょうか?個人的use strict
と書いてあるのでstrict
がfalse
の場合にこのメッセージが出ているのは非常に気持ちが悪いです.
もし,何か知恵を知っている人がいたら教えてもらえると助かります.
- tsc: Version 3.9.2
//tsファイル function test() { return 1; } export function test1() { return 2; } const a = "hoge"; // コンパイル後のファイル "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.test1 = void 0; function test() { return 1; } function test1() { return 2; } exports.test1 = test1; var a = "hoge";
{ "compilerOptions": { "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, "rootDir": "/", "strict": false /* Enable all strict type-checking options. */, "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, "skipLibCheck": true /* Skip type checking of declaration files. */, "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */, "noUnusedLocals": false } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。