mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 17:39:19 +00:00
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
const vscode = require('vscode');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const os = require('os');
|
|
|
|
var adext = {};
|
|
try {
|
|
Object.assign(adext, JSON.parse(fs.readFileSync(path.join(path.dirname(__dirname),'package.json'),'utf8')));
|
|
} catch (ex) { }
|
|
|
|
exports.adext = adext;
|