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: {
name: 'Example App',
contact_email: 'contact@example.net'
@ -30,7 +30,7 @@ export default {
secret: 'default',
cookie: {
secure: false,
maxAge: 30 * 24 * 3600 * 1000, // 30 days
maxAge: 2592000000, // 30 days
}
},
mail: {

View File

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

View File

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

View File

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