Skip to content

Commit

Permalink
fix: fix tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbllmnn authored and KaiVolland committed Jun 25, 2024
1 parent 2f856b3 commit a49482e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "9.0.0-next.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
Expand Down
25 changes: 13 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
{
"compilerOptions": {
"allowJs": false,
"baseUrl": ".",
"module": "commonjs",
"declaration": true,
"esModuleInterop": true,
"outDir": "dist",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"inlineSources": true,
"allowJs": false,
"moduleResolution": "node",
"rootDir": ".",
"forceConsistentCasingInFileNames": true,
"inlineSources": true,
"lib": ["ES2022", "es6", "dom"],
"module": "Preserve",
"moduleResolution": "Bundler",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"outDir": "dist",
"rootDir": ".",
"sourceMap": true,
"strictNullChecks": true,
"noUnusedLocals": true
"target": "ES2022"
},
"files": [
"./typeguards.ts",
"./index.ts"
"./index.ts",
"./functions.ts"
]
}

0 comments on commit a49482e

Please sign in to comment.