-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsku.config.ts
78 lines (67 loc) · 1.84 KB
/
sku.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import type { SkuConfig } from 'sku';
import { merge } from 'webpack-merge';
const isGitHubPages = Boolean(process.env.IS_GITHUB_PAGES);
const config: SkuConfig = {
clientEntry: './example/src/client.tsx',
renderEntry: './example/src/render.tsx',
srcPaths: ['./example/src', './lib'],
publicPath: isGitHubPages ? '/wingman/static/' : '/',
routes: [
'/',
'/accounts',
'/admin',
'/candidates/detail/$id',
'/candidates',
'/positions/detail/$id',
'/positions',
'/positions/new',
'/positions/questionnaires',
],
sites: [{ name: 'apac', host: 'dev.seek.com' }],
compilePackages: ['scoobie'],
rootResolution: false,
dangerouslySetESLintConfig: (skuEslintConfig) => ({
...skuEslintConfig,
rules: {
...skuEslintConfig.rules,
'@typescript-eslint/explicit-module-boundary-types': 'off',
'no-use-before-define': 'off',
'sort-imports': [
'error',
{
ignoreDeclarationSort: true,
},
],
},
settings: {
react: {
version: 'detect',
},
},
}),
dangerouslySetWebpackConfig: (skuWebpackConfig) =>
merge(skuWebpackConfig, {
resolve: {
fallback: {
/**
* We don't have a reasonable browser-compatible package for parsing
* `Content-Disposition` headers 😞.
*
* {@link https://github.com/jshttp/content-disposition}
*/
path: require.resolve('path-browserify'),
},
},
}),
dangerouslySetTSConfig: (tsConfig) => ({
...tsConfig,
compilerOptions: {
...tsConfig.compilerOptions,
// We need to set this as use-debounce exports its type declarations
// under `browser` in package.json
customConditions: ['browser'],
},
include: ['**/*', '.storybook/*'],
}),
};
export default config;