forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodules.js
151 lines (125 loc) · 4.13 KB
/
modules.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// @remove-on-eject-begin
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// @remove-on-eject-end
'use strict';
// const fs = require('fs');
const path = require('path');
const paths = require('./paths');
// const chalk = require('react-dev-utils-tsc/chalk');
// const resolve = require('resolve');
const { pathsToModuleNameMapper } = require('ts-jest/utils');
const readTypescriptConfig = require('../scripts/utils/readTypescriptConfig');
/**
* Get additional module paths based on the baseUrl of a compilerOptions object.
*
* @param {Object} options
*/
function getAdditionalModulePaths(options = {}) {
const baseUrl = options.baseUrl;
if (!baseUrl) {
return '';
}
const baseUrlResolved = path.resolve(paths.appPath, baseUrl);
// We don't need to do anything if `baseUrl` is set to `node_modules`. This is
// the default behavior.
if (path.relative(paths.appNodeModules, baseUrlResolved) === '') {
return null;
}
// Allow the user set the `baseUrl` to `appSrc`.
if (path.relative(paths.appSrc, baseUrlResolved) === '') {
return [paths.appSrc];
}
// If the path is equal to the root directory we ignore it here.
// We don't want to allow importing from the root directly as source files are
// not transpiled outside of `src`. We do allow importing them with the
// absolute path (e.g. `src/Components/Button.js`) but we set that up with
// an alias.
if (path.relative(paths.appPath, baseUrlResolved) === '') {
return null;
}
// Otherwise, throw an error.
// throw new Error(
// chalk.red.bold(
// "Your project's `baseUrl` can only be set to `src` or `node_modules`." +
// ' Create React App does not support other values at this time.'
// )
// );
}
/**
* Get webpack aliases based on the baseUrl of a compilerOptions object.
*
* @param {*} options
*/
function getWebpackAliases(options = {}) {
const baseUrl = options.baseUrl || '';
// if (!baseUrl) {
// return {};
// }
const baseUrlResolved = path.resolve(paths.appPath, baseUrl);
// if (path.relative(paths.appPath, baseUrlResolved) === '') {
// return {
// src: paths.appSrc,
// };
// }
const aliases = {};
const optionsPaths = options.paths || {};
for (const key in optionsPaths) {
const sanitizedKey = key.replace(/\/\*$/, '');
const sanitizedValue = optionsPaths[key][0].replace(/\/\*$/, '');
aliases[sanitizedKey] = path.resolve(baseUrlResolved, sanitizedValue);
}
return aliases;
}
/**
* Get jest aliases based on the baseUrl of a compilerOptions object.
*
* @param {*} options
*/
function getJestAliases(options = {}) {
if (process.env.NODE_ENV !== 'test') {
return;
}
return pathsToModuleNameMapper(options.paths || {}, {
prefix: '<rootDir>',
});
}
function getModules() {
// Check if TypeScript is setup
const hasTsConfig = true;
// const hasJsConfig = fs.existsSync(paths.appJsConfig);
// if (hasTsConfig && hasJsConfig) {
// throw new Error(
// 'You have both a tsconfig.json and a jsconfig.json. If you are using TypeScript please remove your jsconfig.json file.'
// );
// }
let config;
// If there's a tsconfig.json we assume it's a
// TypeScript project and set up the config
// based on tsconfig.json
// if (hasTsConfig) {
// const ts = require(resolve.sync('typescript', {
// basedir: paths.appNodeModules,
// }));
// config = ts.readConfigFile(paths.appTsConfig, ts.sys.readFile).config;
// // Otherwise we'll check if there is jsconfig.json
// // for non TS projects.
// } else if (hasJsConfig) {
// config = require(paths.appJsConfig);
// }
// config = config || {};
// const options = config.compilerOptions || {};
// const additionalModulePaths = getAdditionalModulePaths(options);
config = readTypescriptConfig();
return {
additionalModulePaths: getAdditionalModulePaths(config.options),
webpackAliases: getWebpackAliases(config.options),
jestAliases: getJestAliases(config.options),
hasTsConfig,
};
}
module.exports = getModules();