File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
packages/react-form-with-constraints Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -380,10 +380,7 @@ module.exports = {
380380 ],
381381 '@babel/preset-react'
382382 ],
383- plugins: [
384- '@babel/plugin-proposal-class-properties',
385- '@babel/plugin-proposal-object-rest-spread'
386- ]
383+ plugins: []
387384};
388385` ` `
389386
Original file line number Diff line number Diff line change 11// @ts -check
22
33const path = require ( 'path' ) ;
4- const postcssPresetEnv = require ( 'postcss-preset-env' ) ;
54
65/** @type import('webpack').Configuration */
76const config = {
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ configure({ adapter: new Adapter() });
77// [console.assert not throwing with v22.4.0](https://github.com/facebook/jest/issues/5634)
88console . assert = assert ;
99
10+ // FIXME Remove when Node.js >= 15 is LTS
11+ //
1012// [Event: 'unhandledRejection'](https://nodejs.org/api/process.html#process_event_unhandledrejection)
1113// [Bluebird Error management configuration](http://bluebirdjs.com/docs/api/error-management-configuration.html)
1214//
Original file line number Diff line number Diff line change 11/**
22 * Make all properties in T nullable
3+ *
4+ * https://github.com/microsoft/TypeScript/blob/v4.0.5/src/lib/es5.d.ts#L1439-L1441
35 */
46export type Nullable < T > = { [ P in keyof T ] : T [ P ] | null } ;
You can’t perform that action at this time.
0 commit comments