We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8daadf6 commit e5a9826Copy full SHA for e5a9826
yeoman-generator/src/app/index.ts
@@ -16,6 +16,10 @@ export default class extends Generator {
16
this.templatePath("configuration.json"),
17
this.destinationPath("configuration.json")
18
);
19
+ this.fs.copyTpl(
20
+ this.templatePath("tsconfig.json"),
21
+ this.destinationPath("tsconfig.json")
22
+ );
23
}
24
25
async installSdkPackage() {
yeoman-generator/src/app/templates/tsconfig.json
@@ -0,0 +1,3 @@
1
+{
2
+ "extends": "./node_modules/@tsconfig/node18/tsconfig.json"
3
+}
0 commit comments