|
| 1 | +/foo/tsconfig.json(4,9): error TS5097: Flag 'noImplicitUseStrict' is deprecated, please remove it from your configuration. |
| 2 | +/foo/tsconfig.json(5,9): error TS5097: Flag 'keyofStringsOnly' is deprecated, please remove it from your configuration. |
| 3 | +/foo/tsconfig.json(6,9): error TS5097: Flag 'suppressExcessPropertyErrors' is deprecated, please remove it from your configuration. |
| 4 | +/foo/tsconfig.json(7,9): error TS5097: Flag 'suppressImplicitAnyIndexErrors' is deprecated, please remove it from your configuration. |
| 5 | +/foo/tsconfig.json(8,9): error TS5097: Flag 'noStrictGenericChecks' is deprecated, please remove it from your configuration. |
| 6 | +/foo/tsconfig.json(9,9): error TS5097: Flag 'charset' is deprecated, please remove it from your configuration. |
| 7 | +/foo/tsconfig.json(10,9): error TS5097: Flag 'out' is deprecated, please remove it from your configuration. |
| 8 | +/foo/tsconfig.json(11,31): error TS5098: Invalid value for '--ignoreDeprecations'. |
| 9 | + |
| 10 | + |
| 11 | +==== /foo/tsconfig.json (8 errors) ==== |
| 12 | + { |
| 13 | + "compilerOptions": { |
| 14 | + "target": "ES3", |
| 15 | + "noImplicitUseStrict": true, |
| 16 | + ~~~~~~~~~~~~~~~~~~~~~ |
| 17 | +!!! error TS5097: Flag 'noImplicitUseStrict' is deprecated, please remove it from your configuration. |
| 18 | + "keyofStringsOnly": true, |
| 19 | + ~~~~~~~~~~~~~~~~~~ |
| 20 | +!!! error TS5097: Flag 'keyofStringsOnly' is deprecated, please remove it from your configuration. |
| 21 | + "suppressExcessPropertyErrors": true, |
| 22 | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 23 | +!!! error TS5097: Flag 'suppressExcessPropertyErrors' is deprecated, please remove it from your configuration. |
| 24 | + "suppressImplicitAnyIndexErrors": true, |
| 25 | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 26 | +!!! error TS5097: Flag 'suppressImplicitAnyIndexErrors' is deprecated, please remove it from your configuration. |
| 27 | + "noStrictGenericChecks": true, |
| 28 | + ~~~~~~~~~~~~~~~~~~~~~~~ |
| 29 | +!!! error TS5097: Flag 'noStrictGenericChecks' is deprecated, please remove it from your configuration. |
| 30 | + "charset": "utf8", |
| 31 | + ~~~~~~~~~ |
| 32 | +!!! error TS5097: Flag 'charset' is deprecated, please remove it from your configuration. |
| 33 | + "out": "dist.js", |
| 34 | + ~~~~~ |
| 35 | +!!! error TS5097: Flag 'out' is deprecated, please remove it from your configuration. |
| 36 | + "ignoreDeprecations": "5.0" |
| 37 | + ~~~~~ |
| 38 | +!!! error TS5098: Invalid value for '--ignoreDeprecations'. |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | +==== /foo/a.ts (0 errors) ==== |
| 43 | + const a = 1; |
| 44 | + |
0 commit comments