diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2019-01-31 01:08:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-31 01:08:43 +0900 |
| commit | e909eac29622b5da04688ef7e078a0f529aa7e69 (patch) | |
| tree | 85ad60001679a7fe40e06b51785956b3de8b6ab7 /src/config | |
| parent | [ActivityPub] Use microformats on mentions (diff) | |
| download | misskey-e909eac29622b5da04688ef7e078a0f529aa7e69.tar.gz misskey-e909eac29622b5da04688ef7e078a0f529aa7e69.tar.bz2 misskey-e909eac29622b5da04688ef7e078a0f529aa7e69.zip | |
Create type definition for '*/package.json' (#4014)
* Create type definition for '*/package.json'
* Update tsconfig.json
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/load.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/load.ts b/src/config/load.ts index 4e9a72edd7..ba8b4af3ce 100644 --- a/src/config/load.ts +++ b/src/config/load.ts @@ -7,7 +7,7 @@ import { URL } from 'url'; import * as yaml from 'js-yaml'; import { Source, Mixin } from './types'; import isUrl = require('is-url'); -const pkg = require('../../package.json'); +import * as pkg from '../../package.json'; /** * Path of configuration directory |