mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-10 03:55:29 +01:00
Rollback to Node v16.13.0
This commit is contained in:
parent
57eef9b099
commit
767cbf0e6c
|
@ -1,4 +1,4 @@
|
||||||
FROM node:17-alpine AS base
|
FROM node:16.13.0-alpine AS base
|
||||||
|
|
||||||
# Install ffmpeg and build dependencies
|
# Install ffmpeg and build dependencies
|
||||||
RUN apk add --no-cache ffmpeg python2 make g++
|
RUN apk add --no-cache ffmpeg python2 make g++
|
||||||
|
|
|
@ -7,7 +7,7 @@ import Bot from './bot.js';
|
||||||
import {sequelize} from './utils/db.js';
|
import {sequelize} from './utils/db.js';
|
||||||
import Config from './services/config.js';
|
import Config from './services/config.js';
|
||||||
import FileCacheProvider from './services/file-cache.js';
|
import FileCacheProvider from './services/file-cache.js';
|
||||||
import metadata from '../package.json' assert {type: "json"};
|
import metadata from '../package.json';
|
||||||
|
|
||||||
const bot = container.get<Bot>(TYPES.Bot);
|
const bot = container.get<Bot>(TYPES.Bot);
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"lib": ["ES2019", "DOM"],
|
"lib": ["ES2019", "DOM"],
|
||||||
"target": "es2018",
|
"target": "es2018",
|
||||||
"module": "esnext",
|
"module": "es2022",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"outDir": "dist",
|
"outDir": "dist",
|
||||||
|
|
Loading…
Reference in a new issue