Skip to content

Commit 474bae3

Browse files
committed
config file
1 parent 430a72c commit 474bae3

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

dist/config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"use strict";
2+
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.config = void 0;
4+
exports.config = {
5+
port: 3000,
6+
};

src/config.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"use strict";
2+
3+
export const config = {
4+
port: 3000,
5+
version: "0.0.1-alpha",
6+
production: false,
7+
};

0 commit comments

Comments
 (0)