forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-tsconfigs.ts
53 lines (45 loc) · 1.37 KB
/
generate-tsconfigs.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
// Usage: ts-node generate-tsconfigs.ts
/// <reference types="node" />
import * as fs from 'node:fs';
const home = new URL('../types/', import.meta.url);
for (const dirName of fs.readdirSync(home)) {
if (dirName.startsWith('.') || dirName === 'node_modules' || dirName === 'scripts') {
continue;
}
const dir = new URL(`${dirName}/`, home);
const stats = fs.lstatSync(dir);
if (stats.isDirectory()) {
fixTsconfig(dir);
// Also do it for old versions
for (const subdir of fs.readdirSync(dir)) {
if (/^v\d+$/.test(subdir)) {
fixTsconfig(new URL(`${subdir}/`, dir));
}
}
}
}
function fixTsconfig(dir: URL): void {
const target = new URL('tsconfig.json', dir);
let json = JSON.parse(fs.readFileSync(target, 'utf-8'));
json = fix(json);
fs.writeFileSync(target, JSON.stringify(json, undefined, 4), 'utf-8');
}
function fix(config: any): any {
const out: any = {};
for (const key in config) {
let value = config[key];
if (key === 'compilerOptions') {
value = fixCompilerOptions(value);
}
out[key] = value;
}
return out;
}
function fixCompilerOptions(config: any): any {
const out: any = {};
for (const key in config) {
out[key] = config[key];
// Do something interesting here
}
return out;
}