parent
c7107ce55a
commit
533e0626a5
@ -1,5 +0,0 @@ |
||||
const Provider = require('./src/provider') |
||||
|
||||
module.exports = { |
||||
Provider: Provider |
||||
} |
@ -0,0 +1,3 @@ |
||||
import {Provider} from './provider' |
||||
|
||||
export { Provider } |
@ -0,0 +1,7 @@ |
||||
{ |
||||
"extends": "../../tsconfig.json", |
||||
"compilerOptions": { |
||||
"types": ["node"] |
||||
}, |
||||
"include": ["**/*.ts"] |
||||
} |
@ -1,18 +1,14 @@ |
||||
{ |
||||
"extends": "../../tsconfig.json", |
||||
"extends": "./tsconfig.json", |
||||
"compilerOptions": { |
||||
"module": "commonjs", |
||||
"outDir": "../../dist/out-tsc", |
||||
"allowJs": true, |
||||
"declaration": true, |
||||
"rootDir": "./", |
||||
"rootDir": "./src", |
||||
"types": ["node"] |
||||
}, |
||||
"exclude": ["**/*.spec.js"], |
||||
"include": [ |
||||
"src/**/*.js", |
||||
"./index.js", |
||||
"bin/" |
||||
] |
||||
} |
||||
|
||||
"exclude": [ |
||||
"**/*.spec.ts" |
||||
], |
||||
"include": ["**/*.ts"] |
||||
} |
||||
|
Loading…
Reference in new issue