Skip to content

Commit

Permalink
Merge pull request #170 from snyk/fix/ts-config
Browse files Browse the repository at this point in the history
fix: tsconfig
  • Loading branch information
anthogez authored Mar 14, 2024
2 parents 37056e4 + c0b668d commit b2912b8
Showing 1 changed file with 14 additions and 23 deletions.
37 changes: 14 additions & 23 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,20 @@
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": ".",
"pretty": true,
"moduleResolution": "node",
// https://github.com/tsconfig/bases#node-12-tsconfigjson
"target": "es2019",
"lib": [
"es2019",
"es2020.promise",
"es2020.bigint",
"es2020.string",
"DOM",
"DOM.Iterable"
],
"module": "commonjs",
"allowJs": true,
"sourceMap": true,
"resolveJsonModule": true,
"strict": true,
"noImplicitAny": false, // Needed to compile tap and ansi-escapes
"composite": true,
"useUnknownInCatchVariables": false,
"outDir": "./dist",
"pretty": true,
"target": "es2022",
"lib": [
"ES2022",
],
"module": "commonjs",
"allowJs": true,
"sourceMap": true,
"strict": true,
// "declaration": true,
"importHelpers": true,
"noImplicitAny": false // Needed to compile tap and ansi-escapes
},
"include": [
"./lib/**/*"
"./lib/**/*"
]
}

0 comments on commit b2912b8

Please sign in to comment.