Skip to content

Commit

Permalink
chore: added 'target' and several other compiler options, removed som…
Browse files Browse the repository at this point in the history
…e options, and changed 'exclude' to 'include' with a new pattern.
  • Loading branch information
m-mdy-m committed Jul 28, 2024
1 parent b4a1b5d commit e50e54a
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"noImplicitAny": false,
"noUnusedLocals": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false,
"target": "ES2021",
"sourceMap": true,
"allowJs": false,
"outDir": "dist",
"emitDecoratorMetadata": true,
"skipLibCheck": true
},
"exclude": ["node_modules"]
}
"include": [
"./lib/**/*.ts"
]
}

0 comments on commit e50e54a

Please sign in to comment.