Commit a85535eb by Beebuddy Builder

reset

1 parent d46e1f71
export declare const Greeter: (name: string) => string;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Greeter = void 0;
exports.Greeter = function (name) { return "Hello " + name; };
{
"name": "dma-common-backend",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"devDependencies": {
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://tanawat@192.168.10.40/DMA/dma-common-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC"
}
\ No newline at end of file
export const Greeter = (name: string) => `Hello ${name}`;
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/__tests__/*"
]
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!