Comparing version 1.0.0 to 1.0.1
@@ -29,2 +29,1 @@ declare const common: { | ||
export default common; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const ISSUE_LABELS = { | ||
var ISSUE_LABELS = { | ||
MIGRATION_TASK: "Migration Task", | ||
@@ -28,5 +28,5 @@ MIGRATION_COMPLETED: "Migration Completed", | ||
}; | ||
const common = { | ||
ISSUE_LABELS, | ||
var common = { | ||
ISSUE_LABELS: ISSUE_LABELS, | ||
}; | ||
exports.default = common; |
{ | ||
"name": "common-fv", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": ".dist/index.js", |
{ | ||
// Change this to match your project | ||
"include": ["src/**/*"], | ||
// We don't need to transpile these directories | ||
"exclude": ["node_modules", "dist"], | ||
"compilerOptions": { | ||
// Tells TypeScript to read JS files, as | ||
// normally they are ignored as source files | ||
"allowJs": true, | ||
// Generate d.ts files | ||
"declaration": true, | ||
// This compiler run should | ||
// only output d.ts files | ||
"emitDeclarationOnly": false, | ||
// Types should go into this directory. | ||
// Removing this would place the .d.ts files | ||
// next to the .js files | ||
"outDir": "dist", | ||
// go to js file when using IDE functions like | ||
// "Go to Definition" in VSCode | ||
"declarationMap": true, | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"moduleResolution": "node", | ||
"module": "commonjs", | ||
"target": "ES6" | ||
} | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "commonjs", | ||
"declaration": true, | ||
"outDir": "./dist", | ||
"strict": true | ||
}, | ||
"include": ["src"], | ||
"exclude": ["node_modules"] | ||
} |
3981
5
99