Skip to content

Commit

Permalink
build: updated TS configs
Browse files Browse the repository at this point in the history
  • Loading branch information
webdeveric committed Dec 1, 2024
1 parent 449b38c commit fbe62b3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"composite": true,
"declaration": true,
"declarationDir": "./dist/types",
"declarationMap": true,
"declarationMap": false,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -21,15 +21,15 @@
"noErrorTruncation": true,
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist",
"removeComments": true,
"resolveJsonModule": true,
"rootDir": "./",
"skipLibCheck": true,
"sourceMap": true,
"sourceMap": false,
"strict": true,
"target": "ES2022"
},
Expand Down
1 change: 0 additions & 1 deletion tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"compilerOptions": {
"noEmit": false,
"rootDir": "./src",
"sourceRoot": "./src",
"outDir": "./dist/cjs",
"module": "CommonJS",
"moduleResolution": "Node",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.configs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"checkJs": true,
"noEmit": true,
"rootDir": "./",
"sourceRoot": "./",
"tsBuildInfoFile": "./cache/configs.tsbuildinfo"
},
"include": ["./*.ts", "./*.mts", "./*.cts", "./*.js", "./*.mjs", "./*.cjs"]
Expand Down
1 change: 0 additions & 1 deletion tsconfig.mjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"module": "Node16",
"moduleResolution": "Node16",
"rootDir": "./src",
"sourceRoot": "./src",
"outDir": "./dist/mjs",
"verbatimModuleSyntax": true,
"tsBuildInfoFile": "./cache/mjs.tsbuildinfo"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"verbatimModuleSyntax": true,
"tsBuildInfoFile": "./cache/test.tsbuildinfo"
},
"include": ["src/**/*", "test/**/*"]
"include": ["src/**/*", "test/**/*", "bench/**/*"]
}

0 comments on commit fbe62b3

Please sign in to comment.