@@ -15,6 +15,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
15
15
Library = 'lib'
16
16
}
17
17
const projectTypeQuestion : Question = {
18
+ // tslint:disable-next-line:readonly-array
18
19
choices : [
19
20
{ name : 'Node.js application' , value : ProjectType . Node } ,
20
21
{ name : 'Javascript library' , value : ProjectType . Library }
@@ -33,6 +34,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
33
34
} ;
34
35
35
36
const runnerQuestion : Question = {
37
+ // tslint:disable-next-line:readonly-array
36
38
choices : [
37
39
{ name : 'npm' , value : Runner . Npm } ,
38
40
{ name : 'yarn' , value : Runner . Yarn }
@@ -50,6 +52,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
50
52
}
51
53
52
54
const typeDefsQuestion : Question = {
55
+ // tslint:disable-next-line:readonly-array
53
56
choices : [
54
57
{
55
58
name : `None — the library won't use any globals or modules from Node.js or the DOM` ,
@@ -83,6 +86,7 @@ export async function inquire(): Promise<TypescriptStarterCLIOptions> {
83
86
vscode = 'vscode'
84
87
}
85
88
const extrasQuestion : Question = {
89
+ // tslint:disable-next-line:readonly-array
86
90
choices : [
87
91
{
88
92
name : 'Enable stricter type-checking' ,
0 commit comments