-
Notifications
You must be signed in to change notification settings - Fork 0
/
aliasesFromTSConfig.ts
150 lines (127 loc) · 3.74 KB
/
aliasesFromTSConfig.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
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
import JSON5 from "json5"
import { join, dirname, resolve } from 'path-browserify';
/**
* An object with the aliases as property keys and paths as its values.
*
* @example
* For this given `jsconfig.json`:
* ```json
* {
* "compilerOptions": {
* "baseUrl": "./app",
* "paths": {
* "@": ["src/index.mjs"],
* "@/*": ["src/*"],
* "@ui/*": ["src/components/ui/*"]
* }
* }
* }
* ```
* It would be something like this object:
* ```js
* {
* '@': '/home/user/projects/example/app/src',
* '@ui': '/home/user/projects/example/app/src/components/ui'
* }
* ```
*/
class AliasesFromTSConfig {
private baseUrl: string;
private aliases: {
alias: string;
matcher: RegExp;
replacer: string;
}[];
constructor(config_string:any) {
const config = JSON5.parse(config_string);
const paths = config.compilerOptions?.paths ?? {};
this.baseUrl = config.compilerOptions?.baseUrl ?? '.';
this.aliases = Object.entries(paths).map(([alias, locations]) => {
const group = `(?:${alias.replace(/\*$/, '').replace(/\W/g, '\\$&')})`;
return {
alias,
matcher: new RegExp(`^${group}${alias.endsWith('*') ? '(.*)' : ''}$`),
replacer: (locations as string[])[0]?.replace(/\/\*$/, '') ?? '',
};
});
}
/** Resolves received path joining tsconfigPath's dirname and the baseUrl. */
private resolvePath(path: string): string {
return join(this.baseUrl, path).replace(/\\/g,"/")
}
/** Checks if received path contains an alias from jsconfig/tsconfig.json. */
hasAlias(path: string): boolean {
return this.aliases.some((alias) => alias.matcher.test(path));
}
/** Replaces the alias from jsconfig/tsconfig.json with the correct path. */
apply(path: string) {
for (const { matcher, replacer } of this.aliases) {
const result = matcher.exec(path);
if (!result) continue;
const pathWithoutAlias = result[1] ?? '';
return this.resolvePath(join(replacer, pathWithoutAlias));
}
return path;
}
/**
* Gets an object with the aliases as properties and paths as values.
*
* @example
* ```js
* // webpack.config.js
*
* const aliasesFromTSConfig = new AliasesFromTSConfig('./tsconfig.json');
*
* module.exports = {
* resolve: {
* alias: aliasesFromTSConfig.getAliasesForWebpack(),
* // ...
* },
* // ...
* };
* ```
*/
// getAliasesForWebpack(): AliasesForWebpack {
// const aliases: AliasesForWebpack = {};
// for (const { alias, replacer } of this.aliases) {
// const aliasForFolder = alias.endsWith('/*');
// const property = aliasForFolder ? alias.slice(0, -2) : alias;
// if (property in aliases && !aliasForFolder) continue;
// aliases[property] = this.resolvePath(replacer);
// }
// return aliases;
// }
}
export default AliasesFromTSConfig;
// let a=new AliasesFromTSConfig(`{
// "compilerOptions": {
// "target": "ESNext",
// "module": "commonjs",
// "strict": true,
// "esModuleInterop": true,
// "skipLibCheck": true,
// "forceConsistentCasingInFileNames": true,
// "experimentalDecorators": true,
// "moduleResolution": "node",
// "baseUrl": "./",
// "rootDir": "./",
// "outDir": "dist", // do not change this
// "lib": [],
// "paths": {
// "component": [
// "./src/Component/Definition"
// ],
// "@":["./src"]
// },
// },
// "include": [
// "./**/*.ts",
// "./**/*.d.ts",
// "./types"
// ],
// "exclude": [
// "node_modules",
// "dist"
// ]
// }`);
// console.log(a.apply("dao3-areact/component"));