Compare commits
6 Commits
a5fc6dd234
...
0b22da2e4d
Author | SHA1 | Date | |
---|---|---|---|
0b22da2e4d | |||
e764fcbfe9 | |||
9ce6209cac | |||
8e107fd206 | |||
a5cae044ed | |||
5e059cbc2a |
4
.prettierrc
Normal file
4
.prettierrc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"tabWidth": 4,
|
||||||
|
"useTabs": false
|
||||||
|
}
|
8
.vscode/extensions.json
vendored
Normal file
8
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"2gua.rainbow-brackets",
|
||||||
|
"christian-kohler.npm-intellisense",
|
||||||
|
"remimarsal.prettier-now"
|
||||||
|
],
|
||||||
|
"unwantedRecommendations": []
|
||||||
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
import * as dotenvSafe from 'dotenv-safe';
|
||||||
|
dotenvSafe.config();
|
||||||
import express from 'express';
|
import express from 'express';
|
||||||
const app = express();
|
const app = express();
|
||||||
const PORT = 4010;
|
const PORT = 4010;
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es6",
|
"target": "es6",
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"outDir": "./build",
|
"outDir": "./build",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"strict": true
|
"strict": true
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user