File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -114,13 +114,15 @@ export async function inquire(): Promise<TypescriptStarterUserOptions> {
114
114
description,
115
115
extras,
116
116
projectName,
117
- runner
117
+ runner,
118
+ type
118
119
} = answers as {
119
120
readonly definitions ?: TypeDefinitions ;
120
121
readonly description : string ;
121
122
readonly extras : ReadonlyArray < string > ;
122
123
readonly projectName : string ;
123
124
readonly runner : Runner ;
125
+ readonly type : ProjectType ;
124
126
} ;
125
127
return {
126
128
description,
@@ -135,7 +137,7 @@ export async function inquire(): Promise<TypescriptStarterUserOptions> {
135
137
? [ TypeDefinitions . node , TypeDefinitions . nodeAndDom ] . includes (
136
138
definitions
137
139
)
138
- : false ,
140
+ : type === ProjectType . Node ,
139
141
projectName,
140
142
runner,
141
143
strict : extras . includes ( Extras . strict ) ,
Original file line number Diff line number Diff line change @@ -316,11 +316,15 @@ test(`${
316
316
t . deepEqual ( map , {
317
317
'test-4/README.md' : 'a3e0699b39498df4843c9dde95f1e000' ,
318
318
'test-4/bin/typescript-starter' : 'df05a2c6c849f47761f0e24230359d3e' ,
319
- 'test-4/src/index.ts' : '5991bedc40ac87a01d880c6db16fe349' ,
319
+ 'test-4/src/index.ts' : 'fbc67c2cbf3a7d37e4e02583bf06eec9' ,
320
+ 'test-4/src/lib/async.spec.ts' : '1e83b84de3f3b068244885219acb42bd' ,
321
+ 'test-4/src/lib/async.ts' : '9012c267bb25fa98ad2561929de3d4e2' ,
322
+ 'test-4/src/lib/hash.spec.ts' : '87bfca3c0116fd86a353750fcf585ecf' ,
323
+ 'test-4/src/lib/hash.ts' : 'a4c552897f25da5963f410e375264bd1' ,
320
324
'test-4/src/lib/number.spec.ts' : '40ebb014eb7871d1f810c618aba1d589' ,
321
325
'test-4/src/lib/number.ts' : '43756f90e6ac0b1c4ee6c81d8ab969c7' ,
322
326
'test-4/src/types/example.d.ts' : '4221812f6f0434eec77ccb1fba1e3759' ,
323
- 'test-4/tsconfig.json' : '0e04adfce2f26c6473f079f6dabd108a ' ,
327
+ 'test-4/tsconfig.json' : 'e41d08f0aca16cb05430b61e4b6286db ' ,
324
328
'test-4/tsconfig.module.json' : '2fda4c8760c6cfa3462b40df0645850d' ,
325
329
'test-4/tslint.json' : '99f6f8fa763bfc2a32377739b3e5dd5c'
326
330
} ) ;
You can’t perform that action at this time.
0 commit comments