Skip to content

Commit

Permalink
tsconfig.json confusing settings. Fixes #323
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Jan 12, 2022
1 parent f13841e commit 5b16f4f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 20 deletions.
6 changes: 1 addition & 5 deletions generators/app/templates/ext-command-ts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,5 @@
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
".vscode-test"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,5 @@
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
".vscode-test"
]
}
}
6 changes: 1 addition & 5 deletions generators/app/templates/ext-command-web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,5 @@
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
".vscode-test-web"
]
}
}
6 changes: 1 addition & 5 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -712,11 +712,7 @@ describe('test code generator', function () {
"sourceMap": true,
"rootDir": "src",
"strict": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}
};
try {
assertFiles(runResult, 'testCom', ['src/extension.ts', 'src/test/suite/extension.test.ts', 'src/test/suite/index.ts', 'tsconfig.json', '.eslintrc.json', '.vscode/extensions.json']);
Expand Down

0 comments on commit 5b16f4f

Please sign in to comment.