Skip to content

Commit 04b9dc1

Browse files
committed
fix(tsconfig) listFiles if @vvakame 👍 s it. We fix it. Closes #540 (comment)
1 parent 50b0ac4 commit 04b9dc1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dist/main/tsconfig/tsconfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ var compilerOptionsValidation = {
1818
isolatedModules: { type: types.boolean },
1919
jsx: { type: types.string, validValues: ['preserve', 'react'] },
2020
locals: { type: types.string },
21+
listFiles: { type: types.boolean },
2122
mapRoot: { type: types.string },
2223
module: { type: types.string, validValues: ['commonjs', 'amd', 'system', 'umd'] },
2324
moduleResolution: { type: types.string, validValues: ['classic', 'node'] },

lib/main/tsconfig/tsconfig.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ interface CompilerOptions {
3232
inlineSources?: boolean;
3333
jsx?: string;
3434
locale?: string;
35+
listFiles?: boolean;
3536
mapRoot?: string; // Optionally Specifies the location where debugger should locate map files after deployment
3637
module?: string;
3738
moduleResolution?: string;
@@ -74,6 +75,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
7475
isolatedModules: { type: types.boolean },
7576
jsx: { type: types.string, validValues: ['preserve', 'react'] },
7677
locals: { type: types.string },
78+
listFiles: { type: types.boolean },
7779
mapRoot: { type: types.string },
7880
module: { type: types.string, validValues: ['commonjs', 'amd', 'system', 'umd'] },
7981
moduleResolution: { type: types.string, validValues: ['classic', 'node'] },

0 commit comments

Comments
 (0)