Skip to content

Commit d81e6f2

Browse files
committed
wip
1 parent f86c213 commit d81e6f2

File tree

5 files changed

+2
-288
lines changed

5 files changed

+2
-288
lines changed

jest.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ module.exports = {
22
preset: 'ts-jest',
33
collectCoverageFrom: [
44
'src/**/*.ts',
5-
'!src/vendor-typings/**'
65
],
76
testResultsProcessor: './node_modules/jest-junit-reporter',
87
testEnvironment: 'node',
98
testPathIgnorePatterns: [
109
'/build',
1110
'/node_modules/',
12-
'/vendor-typings'
1311
],
1412
coverageThreshold: {
1513
global: {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"import": "./build/index.mjs"
1212
},
1313
"scripts": {
14-
"build": "npm run build:clean && npm run compile && cp -R src/index.mjs src/vendor-typings build",
14+
"build": "npm run build:clean && npm run compile && cp -R src/index.mjs build",
1515
"build:docs": "typedoc --options typedoc.js --plugin typedoc-plugin-markdown src/ --out docs",
16-
"build:clean": "rm -rf build/*",
16+
"build:clean": "rm -rf 'build/*'",
1717
"compile": "tsc",
1818
"debug": "ts-node-dev --inspect -- src/index.ts",
1919
"debug:break": "ts-node-dev --inspect-brk -- src/index.ts",

src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference types="./vendor-typings/sqlite3" />
2-
31
import * as sqlite3 from 'sqlite3'
42
import { Statement } from './Statement'
53
import { Database } from './Database'

src/interfaces.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference types="./vendor-typings/sqlite3" />
2-
31
import * as sqlite3 from 'sqlite3'
42
import { Statement } from './Statement'
53

src/vendor-typings/sqlite3/index.d.ts

Lines changed: 0 additions & 280 deletions
This file was deleted.

0 commit comments

Comments
 (0)