refactor(casing): Force consistent casing (#25)
Force consistent casing across code. This will allow people to import the interfaces from `Interfaces.ts` and also use `forceConsistentCasingInFileNames`
This commit is contained in:
Родитель
db540998e1
Коммит
1581035339
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
import ifm = require('../interfaces');
|
||||
import ifm = require('../Interfaces');
|
||||
|
||||
export class BasicCredentialHandler implements ifm.IRequestHandler {
|
||||
username: string;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
import ifm = require('../interfaces');
|
||||
import ifm = require('../Interfaces');
|
||||
|
||||
export class BearerCredentialHandler implements ifm.IRequestHandler {
|
||||
token: string;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
import ifm = require('../interfaces');
|
||||
import ifm = require('../Interfaces');
|
||||
|
||||
import http = require("http");
|
||||
import https = require("https");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
import ifm = require('../interfaces');
|
||||
import ifm = require('../Interfaces');
|
||||
|
||||
export class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler {
|
||||
token: string;
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
"moduleResolution": "node",
|
||||
"typeRoots": [ "node_modules/@types" ],
|
||||
"declaration": true,
|
||||
"outDir": "_build"
|
||||
"outDir": "_build",
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"lib/Index.ts",
|
||||
|
|
Загрузка…
Ссылка в новой задаче