Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
knaus94 committed Jan 14, 2024
1 parent 05e8d3e commit 07037a6
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 20 deletions.
18 changes: 16 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knaus94/prisma-extension-cache-manager",
"version": "1.0.5",
"version": "1.0.10",
"repository": {
"type": "git",
"url": "https://github.com/knaus94/prisma-extension-cache-manager.git"
Expand All @@ -17,9 +17,23 @@
"cache-manager",
"cache"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist/**/*",
"LICENSE",
"dist"
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand Down
36 changes: 18 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"module": "CommonJS",
"moduleResolution": "Node",
"noImplicitReturns": true,
"noUnusedLocals": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"sourceMap": true,
"noUnusedParameters": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"esModuleInterop": true,
"moduleResolution": "node",
}
}
"paths": {
"~/*": ["./src/*"]
},
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ESNext"
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "dist"]
}

0 comments on commit 07037a6

Please sign in to comment.