Skip to content

Commit

Permalink
ver up
Browse files Browse the repository at this point in the history
  • Loading branch information
l-v-yonsama committed Feb 27, 2023
1 parent 13c8b6a commit fd49d4b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@l-v-yonsama/multi-platform-database-drivers",
"version": "0.1.1",
"version": "0.1.2",
"description": "multi-platform database drivers in TypeScript.",
"type": "module",
"engines": {
Expand Down Expand Up @@ -29,6 +29,7 @@
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"prepublishOnly": "npm run build:release",
"lint": "eslint . --ext .ts --ext .mts",
"lint:fix": "eslint --fix . --ext .ts --ext .mts",
"test0": "jest --coverage",
Expand Down Expand Up @@ -62,6 +63,9 @@
"volta": {
"node": "18.12.1"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/l-v-yonsama/db-drivers.git"
Expand Down
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": false,
"moduleResolution": "node",
"rootDir": ".",
"outDir": "build",
Expand All @@ -18,7 +19,5 @@
"noImplicitThis": false,
"strictNullChecks": false,
"skipLibCheck": true
},
"include": ["src/**/*", "__tests__/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}
}
23 changes: 23 additions & 0 deletions tsconfig.release.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"moduleResolution": "node",
"rootDir": ".",
"outDir": "build",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"skipLibCheck": true
}
}

0 comments on commit fd49d4b

Please sign in to comment.