discord. js/ typescript / heroku / github:语法错误:不能在模块外部使用import语句

pu3pd22g  于 2023-03-23  发布在  TypeScript
关注(0)|答案(1)|浏览(225)
// imports all the things needed to run the discord bot successfully
import DiscordJS, { TextChannel, Intents, Message, Channel, NewsChannel, ThreadChannel, DiscordAPIError } from 'discord.js'
type guildTextBasedChannel = TextChannel | NewsChannel | ThreadChannel

import dotenv from 'dotenv'
dotenv.config()

//sets prefix to be used when running bot commands
const prefix = '~';

//This lets the discord bot know what your intentions are using this bot. Hence the guilds, guilds messages and message reactions
const client = new DiscordJS.Client({
    intents: [
        Intents.FLAGS.GUILDS,
        Intents.FLAGS.GUILD_MESSAGES,
        Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
        Intents.FLAGS.DIRECT_MESSAGES
    ]
})

//This prints out "The bot is ready" whenever you turn the bot, hence the 'ready' parameter
client.on('ready', () => {
    console.log('The bot is ready')
})

//Allows the program to access the correct bot using the specified token
client.login(process.env.token)

我想做一个不和谐的机器人,但它运行24/7使用github和heroku.我看了一个视频如何设置它,但我得到一个错误,当我运行heroku. x1c 0d1x
我猜这个错误是因为我在机器人上使用了typescript。我必须转换成javascript吗?或者有一个简单的修复方法吗?
编辑:

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
    if (k2 === undefined) k2 = k;
    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
    if (k2 === undefined) k2 = k;
    o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
    Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
    o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
    if (mod && mod.__esModule) return mod;
    var result = {};
    if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
    __setModuleDefault(result, mod);
    return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
    return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });

// imports all the things needed to run the discord bot successfully
const discord_js_1 = __importStar(require("discord.js"));
const dotenv_1 = __importDefault(require("dotenv"));
dotenv_1.default.config();

//sets prefix to be used when running bot commands
const prefix = '~';

//This lets the discord bot know what your intentions are using this bot. Hence the guilds, guilds messages and message reactions
const client = new discord_js_1.default.Client({
    intents: [
        discord_js_1.Intents.FLAGS.GUILDS,
        discord_js_1.Intents.FLAGS.GUILD_MESSAGES,
        discord_js_1.Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
        discord_js_1.Intents.FLAGS.DIRECT_MESSAGES
    ]
});



//This prints out "The bot is ready" whenever you turn the bot, hence the 'ready' parameter
client.on('ready', () => {
    console.log('The bot is ready');
});
client.login(process.env.token);

上面是我做了“tsc”之后的index.js代码。

上面的图片是我在heroku得到的错误信息。

oyt4ldly

oyt4ldly1#

从我使用Heroku的经验来看,如果你试图直接执行TS文件,它不会很好地工作。我建议你使用像tsc这样的东西来转换为JS并在Heroku上运行JavaScript。

  • 旁注:* 如果您在package.json中设置了"type": "module",您将无法访问某些全局变量,如__dirname

相关问题