Files
memecoin-botV2/.pnpm-store/v10/files/e4/dd5c48b12d9d6db4555721d5db477583f1cd69d4661646dda51395ec060bc019ee9a1129d71fa1f417cf33f4300120c911d85de06a0a50dca0e1822e5e135c

14 lines
412 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CORE_COMPILER_OPTIONS = void 0;
/**
* Compiler options required to avoid critical functionality issues
*/
exports.CORE_COMPILER_OPTIONS = {
// Required to avoid parse from causing emit to occur
noEmit: true,
// Flags required to make no-unused-vars work
noUnusedLocals: true,
noUnusedParameters: true,
};