configuration: use .json5 instead of .ts

This commit is contained in:
Alice Gaudon 2020-10-01 16:16:36 +02:00
parent 36f835b226
commit bb100b3c13
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
export default { {
app: { app: {
name: 'Example App', name: 'Example App',
contact_email: 'contact@example.net' contact_email: 'contact@example.net'
@ -30,7 +30,7 @@ export default {
secret: 'default', secret: 'default',
cookie: { cookie: {
secure: false, secure: false,
maxAge: 30 * 24 * 3600 * 1000, // 30 days maxAge: 2592000000, // 30 days
} }
}, },
mail: { mail: {

View File

@ -1,4 +1,4 @@
export default { {
log: { log: {
level: "DEV", level: "DEV",
verbose: false, verbose: false,

View File

@ -1,4 +1,4 @@
export default { {
mysql: { mysql: {
host: "localhost", host: "localhost",
user: "root", user: "root",

View File

@ -1,6 +1,6 @@
{ {
"name": "wms-core", "name": "wms-core",
"version": "0.22.0-rc.21", "version": "0.22.0-rc.22",
"description": "Node web application framework and toolbelt.", "description": "Node web application framework and toolbelt.",
"repository": "https://gitlab.com/ArisuOngaku/wms-core", "repository": "https://gitlab.com/ArisuOngaku/wms-core",
"author": "Alice Gaudon <alice@gaudon.pro>", "author": "Alice Gaudon <alice@gaudon.pro>",