-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtsconfig.ts
232 lines (189 loc) · 4.84 KB
/
tsconfig.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import * as fs from 'fs'
import * as path from 'path'
import stripBom = require('strip-bom')
import stripComments = require('strip-json-comments')
export interface LoadResult {
path?: string
config: any
}
const CONFIG_FILENAME = 'tsconfig.json'
/**
* Resolve a configuration file, like `tsc`.
*/
export function resolve (cwd: string, filename?: string): Promise<string | void> {
if (!filename) {
return find(cwd)
}
const fullPath = path.resolve(cwd, filename)
return stat(fullPath)
.then<string | void>(stats => {
if (isFile(stats)) {
return fullPath
}
if (isDirectory(stats)) {
const configFile = path.join(fullPath, CONFIG_FILENAME)
return stat(configFile)
.then(stats => {
if (isFile(stats)) {
return configFile
}
throw new TypeError(`Cannot find a ${CONFIG_FILENAME} file at the specified directory: ${filename}`)
})
}
throw new TypeError(`The specified path does not exist: ${filename}`)
})
}
/**
* Synchronous `resolve`.
*/
export function resolveSync (cwd: string, filename?: string): string | void {
if (!filename) {
return findSync(cwd)
}
const fullPath = path.resolve(cwd, filename)
const stats = statSync(fullPath)
if (isFile(stats)) {
return fullPath
}
if (isDirectory(stats)) {
const configFile = path.join(fullPath, CONFIG_FILENAME)
const stats = statSync(configFile)
if (isFile(stats)) {
return configFile
}
throw new TypeError(`Cannot find a ${CONFIG_FILENAME} file at the specified directory: ${filename}`)
}
throw new TypeError(`The specified path does not exist: ${filename}`)
}
/**
* Resolve `tsconfig.json` from a directory.
*/
export function find (dir: string): Promise<string | void> {
const configFile = path.resolve(dir, CONFIG_FILENAME)
return stat(configFile)
.then(stats => {
if (isFile(stats)) {
return configFile
}
const parentDir = path.dirname(dir)
if (dir === parentDir) {
return
}
return find(parentDir)
})
}
/**
* Synchronous `find`.
*/
export function findSync (dir: string): string | void {
const configFile = path.resolve(dir, CONFIG_FILENAME)
const stats = statSync(configFile)
if (isFile(stats)) {
return configFile
}
const parentDir = path.dirname(dir)
if (dir === parentDir) {
return
}
return findSync(parentDir)
}
/**
* Resolve and load configuration file.
*/
export function load (cwd: string, filename?: string): Promise<LoadResult> {
return resolve(cwd, filename)
.then<LoadResult>(path => {
if (path == null) {
return Promise.resolve<LoadResult>({
config: {
files: [],
compilerOptions: {}
}
})
}
return readFile(path as string).then(config => ({ path: path as string, config }))
})
}
/**
* Synchronous `load`.
*/
export function loadSync (cwd: string, filename?: string): LoadResult {
const path = resolveSync(cwd, filename)
if (path == null) {
return {
config: {
files: [],
compilerOptions: {}
}
}
}
const config = readFileSync(path as string)
return { path: path as string, config }
}
/**
* Read `tsconfig.json` and parse/sanitize contents.
*/
export function readFile (filename: string): Promise<any> {
return new Promise((resolve, reject) => {
fs.readFile(filename, 'utf8', (err, contents) => {
if (err) {
return reject(err)
}
try {
return resolve(parse(contents, filename))
} catch (err) {
return reject(err)
}
})
})
}
/**
* Synchonrous `readFile`.
*/
export function readFileSync (filename: string): any {
const contents = fs.readFileSync(filename, 'utf8')
return parse(contents, filename)
}
/**
* Parse `tsconfig.json` file.
*/
export function parse (contents: string, filename: string) {
const data = stripComments(stripBom(contents))
// A tsconfig.json file is permitted to be completely empty.
if (/^\s*$/.test(data)) {
return {}
}
return JSON.parse(data)
}
/**
* Check if a file exists.
*/
function stat (filename: string): Promise<fs.Stats | void> {
return new Promise<fs.Stats>((resolve, reject) => {
fs.stat(filename, (err, stats) => {
return err ? resolve(undefined) : resolve(stats)
})
})
}
/**
* Synchronously check if a file exists.
*/
function statSync (filename: string): fs.Stats | void {
try {
return fs.statSync(filename)
} catch (e) {
return
}
}
/**
* Check filesystem stat is a directory.
*/
function isFile (stats: fs.Stats | void) {
return stats ? (stats as fs.Stats).isFile() || (stats as fs.Stats).isFIFO() : false
}
/**
* Check filesystem stat is a directory.
*/
function isDirectory (stats: fs.Stats | void) {
return stats ? (stats as fs.Stats).isDirectory() : false
}