本文整理匯總了TypeScript中typescript-nullable.Nullable.isSome方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Nullable.isSome方法的具體用法?TypeScript Nullable.isSome怎麽用?TypeScript Nullable.isSome使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類typescript-nullable.Nullable
的用法示例。
在下文中一共展示了Nullable.isSome方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: selectWebpackEntry
export const selectWebpackConfig = (state: State): webpack.Configuration => {
const config: webpack.Configuration = {
entry: selectWebpackEntry(state),
output: selectOutput(state),
mode: state.env,
module: {
rules: [
{
test: /\.js$/,
loader: require.resolve('eslint-loader'),
include: selectAppPath(state),
enforce: 'pre',
options: {
eslintPath: require.resolve('eslint')
}
},
{
test: /\.js$/,
loader: require.resolve('babel-loader'),
include: selectAppPath(state)
}
]
},
resolve: {
mainFields: ['module', 'main']
},
plugins: [...selectDefaultPlugins(state), ...selectEnvPlugins(state)]
};
const modifier = Nullable.andThen(
webpack => webpack.modifier,
Nullable.andThen(rc => rc.webpack, errorToNull(state.rc))
);
if (Nullable.isSome(modifier)) {
return modifier(config, { env: state.env, cmd: 'build' });
}
return config;
};