DefinitelyTyped/dotenv/dotenv-tests.ts
Jussi Kinnula 3dba657aa0 Add dotenv
2016-03-21 15:01:49 +02:00

15 lines
188 B
TypeScript

/// <reference path="dotenv.d.ts" />
import dotenv = require('dotenv');
dotenv.config({
silent: true
});
dotenv.config({
path: '.env'
})
dotenv.config({
encoding: 'utf8'
})