Skip to content

Commit 721e96b

Browse files
fixed samples
1 parent 2f05e15 commit 721e96b

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

modules/openapi-generator/src/main/resources/typescript-nestjs-server/gitignore

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# compiled output
22
/dist
33
/node_modules
4+
/build
45

56
# Logs
67
logs
@@ -41,21 +42,15 @@ lerna-debug.log*
4142
.env.production.local
4243
.env.local
4344

44-
# parcel-bundler cache (https://parceljs.org/)
45-
.cache
46-
.parcel-cache
45+
# temp directory
46+
.temp
47+
.tmp
4748

48-
# Next.js build output
49-
.next
49+
# Runtime data
50+
pids
51+
*.pid
52+
*.seed
53+
*.pid.lock
5054

51-
# Nuxt.js build / generate output
52-
.nuxt
53-
dist
54-
55-
# Storybook build outputs
56-
.out
57-
.storybook-out
58-
59-
# Temporary folders
60-
tmp/
61-
temp/
55+
# Diagnostic reports (https://nodejs.org/api/report.html)
56+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

modules/openapi-generator/src/main/resources/typescript-nestjs-server/tsconfig.mustache

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
"emitDecoratorMetadata": true,
77
"experimentalDecorators": true,
88
"allowSyntheticDefaultImports": true,
9-
"target": "ES2020",
9+
"target": "ES2023",
1010
"sourceMap": true,
1111
"outDir": "./dist",
1212
"baseUrl": "./",
1313
"incremental": true,
1414
"skipLibCheck": true,
15-
"strictNullChecks": false,
15+
"strictNullChecks": true,
16+
"forceConsistentCasingInFileNames": true,
1617
"noImplicitAny": false,
1718
"strictBindCallApply": false,
18-
"forceConsistentCasingInFileNames": false,
1919
"noFallthroughCasesInSwitch": false
2020
}
21-
}
21+
}

0 commit comments

Comments
 (0)