12 lines
462 B
JavaScript
12 lines
462 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.configFilePath = void 0;
|
|
const fs_1 = require("fs");
|
|
const store_1 = require("./store");
|
|
const configFilePath = (path) => {
|
|
store_1.config.saveTypeFilePath = path;
|
|
console.log("config.saveTypeFilePath: ", store_1.config.saveTypeFilePath);
|
|
(0, fs_1.writeFileSync)(store_1.config.saveTypeFilePath, "testetststststststst");
|
|
};
|
|
exports.configFilePath = configFilePath;
|