source: trip-planner-front/node_modules/@babel/core/lib/config/validation/removed.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.3 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7var _default = {
8 auxiliaryComment: {
9 message: "Use `auxiliaryCommentBefore` or `auxiliaryCommentAfter`"
10 },
11 blacklist: {
12 message: "Put the specific transforms you want in the `plugins` option"
13 },
14 breakConfig: {
15 message: "This is not a necessary option in Babel 6"
16 },
17 experimental: {
18 message: "Put the specific transforms you want in the `plugins` option"
19 },
20 externalHelpers: {
21 message: "Use the `external-helpers` plugin instead. " + "Check out http://babeljs.io/docs/plugins/external-helpers/"
22 },
23 extra: {
24 message: ""
25 },
26 jsxPragma: {
27 message: "use the `pragma` option in the `react-jsx` plugin. " + "Check out http://babeljs.io/docs/plugins/transform-react-jsx/"
28 },
29 loose: {
30 message: "Specify the `loose` option for the relevant plugin you are using " + "or use a preset that sets the option."
31 },
32 metadataUsedHelpers: {
33 message: "Not required anymore as this is enabled by default"
34 },
35 modules: {
36 message: "Use the corresponding module transform plugin in the `plugins` option. " + "Check out http://babeljs.io/docs/plugins/#modules"
37 },
38 nonStandard: {
39 message: "Use the `react-jsx` and `flow-strip-types` plugins to support JSX and Flow. " + "Also check out the react preset http://babeljs.io/docs/plugins/preset-react/"
40 },
41 optional: {
42 message: "Put the specific transforms you want in the `plugins` option"
43 },
44 sourceMapName: {
45 message: "The `sourceMapName` option has been removed because it makes more sense for the " + "tooling that calls Babel to assign `map.file` themselves."
46 },
47 stage: {
48 message: "Check out the corresponding stage-x presets http://babeljs.io/docs/plugins/#presets"
49 },
50 whitelist: {
51 message: "Put the specific transforms you want in the `plugins` option"
52 },
53 resolveModuleSource: {
54 version: 6,
55 message: "Use `babel-plugin-module-resolver@3`'s 'resolvePath' options"
56 },
57 metadata: {
58 version: 6,
59 message: "Generated plugin metadata is always included in the output result"
60 },
61 sourceMapTarget: {
62 version: 6,
63 message: "The `sourceMapTarget` option has been removed because it makes more sense for the tooling " + "that calls Babel to assign `map.file` themselves."
64 }
65};
66exports.default = _default;
Note: See TracBrowser for help on using the repository browser.