Commit 1c657840 authored by Tt's avatar Tt

基础效果完成

parent 3ed07c24
This diff is collapsed.
This diff is collapsed.
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
const { ccclass, property } = cc._decorator;
import pg from "./pg";
@ccclass
export default class NewClass extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
private count = 0;
onLoad() {
this.count = 0;
}
start() {
}
update(dt) {
this.count++;
// if (this.count >= 30) this.count = 0;
this.updateItems();
}
updateItems() {
let cur = Math.floor(this.count / 30) % 4
for (let i = 0; i < 4; i++) {
let item = pg.view.find(this, "btn_audio" + i);
item.active = cur == i;
}
}
}
{
"ver": "1.0.8",
"uuid": "bed01784-8114-4d5e-bd26-36345307676c",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import movement from "./movements";
const { ccclass, property } = cc._decorator;
interface Point {
id: string;
blue_x: string;
blue_y: string;
yellow_x: string;
yellow_y: string;
}
@ccclass
export default class NewClass extends cc.Component {
@property
isRobot: boolean = false;
// LIFE-CYCLE CALLBACKS:
onLoad() {
}
private lastPoints: Array<Point>;
run(points: Array<Point>) {
return new Promise((resolve, reject) => {
this.lastPoints = points;
let posArray = this.getPos(points);
let point0 = posArray.shift();
this.node.x = point0.x;
this.node.y = point0.y;
let movementList = []
for (let i = 0; i < posArray.length; i++) {
let pos = posArray[i];
movementList.push({
id: i,
time: 0.2,
x: pos.x,
y: pos.y
})
}
movement.loadTween(this.node, movementList).then(() => {
resolve('');
})
});
}
getPos(points: Array<Point>) {
let posArray = points.map(li => {
let pos: any = {
x: this.isRobot ? li.blue_x : li.yellow_x,
y: this.isRobot ? li.blue_y : li.yellow_y
}
pos.x = Number(pos.x);
pos.y = Number(pos.y);
return pos;
});
return posArray;
}
start() {
}
// update (dt) {}
}
{
"ver": "1.0.8",
"uuid": "00040df5-e4c9-4c8d-9fea-65b709873399",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
onLoad() {
this.showAni();
}
showAni() {
this.node.x += 400;
this.node.y -= 200;
cc.tween(this.node).by(0.3, { x: -400, y: 200 }).start();
setTimeout(() => {
this.showAni();
}, 2000);
}
update(dt) {
}
}
{
"ver": "1.0.8",
"uuid": "df113ecd-ad74-4af4-8f8c-80c104abeefd",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
export default [{ "id": "1", "blue_x": "-360", "blue_y": "70", "yellow_x": "-455", "yellow_y": "70", "type": "0", "value": "0" }, { "id": "2", "blue_x": "-410", "blue_y": "163", "yellow_x": "-410", "yellow_y": "282", "type": "1", "value": "blackboard" }, { "id": "3", "blue_x": "-270", "blue_y": "147", "yellow_x": "-269", "yellow_y": "282", "type": "1", "value": "window" }, { "id": "4", "blue_x": "-129", "blue_y": "147", "yellow_x": "-130", "yellow_y": "282", "type": "1", "value": "door" }, { "id": "5", "blue_x": "7", "blue_y": "147", "yellow_x": "12", "yellow_y": "282", "type": "2", "value": "2" }, { "id": "6", "blue_x": "150", "blue_y": "147", "yellow_x": "150", "yellow_y": "282", "type": "1", "value": "window" }, { "id": "7", "blue_x": "293", "blue_y": "147", "yellow_x": "290", "yellow_y": "282", "type": "5", "value": "14" }, { "id": "8", "blue_x": "500", "blue_y": "211", "yellow_x": "433", "yellow_y": "282", "type": "1", "value": "door" }, { "id": "9", "blue_x": "338", "blue_y": "71", "yellow_x": "512", "yellow_y": "100", "type": "3", "value": "1" }, { "id": "10", "blue_x": "354", "blue_y": "-64", "yellow_x": "503", "yellow_y": "-66", "type": "1", "value": "door" }, { "id": "11", "blue_x": "516", "blue_y": "-204", "yellow_x": "503", "yellow_y": "-210", "type": "1", "value": "blackboard" }, { "id": "12", "blue_x": "291", "blue_y": "-126", "yellow_x": "292", "yellow_y": "-283", "type": "1", "value": "window" }, { "id": "13", "blue_x": "148", "blue_y": "-126", "yellow_x": "154", "yellow_y": "-283", "type": "2", "value": "3" }, { "id": "14", "blue_x": "9", "blue_y": "-126", "yellow_x": "12", "yellow_y": "-283", "type": "1", "value": "blackboard" }, { "id": "15", "blue_x": "-129", "blue_y": "-126", "yellow_x": "-127", "yellow_y": "-283", "type": "2", "value": "1" }, { "id": "16", "blue_x": "-270", "blue_y": "-126", "yellow_x": "-270", "yellow_y": "-283", "type": "1", "value": "window" }, { "id": "17", "blue_x": "-410", "blue_y": "-126", "yellow_x": "-410", "yellow_y": "-309", "type": "4", "value": "5" }, { "id": "18", "blue_x": "-548", "blue_y": "-126", "yellow_x": "-548", "yellow_y": "-288", "type": "1", "value": "door" }, { "id": "19", "blue_x": "-773", "blue_y": "-216", "yellow_x": "-692", "yellow_y": "-294", "type": "1", "value": "blackboard" }, { "id": "20", "blue_x": "-607", "blue_y": "-64", "yellow_x": "-764", "yellow_y": "-71", "type": "1", "value": "window" }, { "id": "21", "blue_x": "-607", "blue_y": "84", "yellow_x": "-780", "yellow_y": "73", "type": "4", "value": "5" }, { "id": "22", "blue_x": "-607", "blue_y": "220", "yellow_x": "-773", "yellow_y": "213", "type": "2", "value": "3" }, { "id": "23", "blue_x": "-607", "blue_y": "353", "yellow_x": "-764", "yellow_y": "353", "type": "1", "value": "door" }, { "id": "24", "blue_x": "-775", "blue_y": "487", "yellow_x": "-771", "yellow_y": "500", "type": "2", "value": "5" }, { "id": "25", "blue_x": "-550", "blue_y": "420", "yellow_x": "-550", "yellow_y": "548", "type": "1", "value": "window" }, { "id": "26", "blue_x": "-408", "blue_y": "394", "yellow_x": "-410", "yellow_y": "548", "type": "4", "value": "5" }, { "id": "27", "blue_x": "-270", "blue_y": "419", "yellow_x": "-268", "yellow_y": "562", "type": "2", "value": "2" }, { "id": "28", "blue_x": "-121", "blue_y": "419", "yellow_x": "-125", "yellow_y": "562", "type": "1", "value": "door" }, { "id": "29", "blue_x": "14", "blue_y": "419", "yellow_x": "15", "yellow_y": "562", "type": "1", "value": "blackboard" }, { "id": "30", "blue_x": "148", "blue_y": "388", "yellow_x": "152", "yellow_y": "562", "type": "3", "value": "1" }, { "id": "31", "blue_x": "286", "blue_y": "404", "yellow_x": "290", "yellow_y": "562", "type": "1", "value": "window" }, { "id": "32", "blue_x": "433", "blue_y": "404", "yellow_x": "431", "yellow_y": "562", "type": "2", "value": "1" }, { "id": "33", "blue_x": "574", "blue_y": "394", "yellow_x": "570", "yellow_y": "562", "type": "4", "value": "5" }, { "id": "34", "blue_x": "796", "blue_y": "490", "yellow_x": "714", "yellow_y": "562", "type": "1", "value": "blackboard" }, { "id": "35", "blue_x": "637", "blue_y": "354", "yellow_x": "784", "yellow_y": "351", "type": "1", "value": "door" }, { "id": "36", "blue_x": "624", "blue_y": "204", "yellow_x": "784", "yellow_y": "206", "type": "2", "value": "3" }, { "id": "37", "blue_x": "624", "blue_y": "66", "yellow_x": "784", "yellow_y": "68", "type": "5", "value": "43" }, { "id": "38", "blue_x": "624", "blue_y": "-60", "yellow_x": "798", "yellow_y": "-60", "type": "3", "value": "1" }, { "id": "39", "blue_x": "624", "blue_y": "-198", "yellow_x": "788", "yellow_y": "-207", "type": "1", "value": "window" }, { "id": "40", "blue_x": "624", "blue_y": "-343", "yellow_x": "788", "yellow_y": "-352", "type": "2", "value": "1" }, { "id": "41", "blue_x": "784", "blue_y": "-488", "yellow_x": "788", "yellow_y": "-484", "type": "1", "value": "blackboard" }, { "id": "42", "blue_x": "570", "blue_y": "-415", "yellow_x": "570", "yellow_y": "-551", "type": "1", "value": "window" }, { "id": "43", "blue_x": "429", "blue_y": "-415", "yellow_x": "424", "yellow_y": "-554", "type": "2", "value": "2" }, { "id": "44", "blue_x": "291", "blue_y": "-415", "yellow_x": "292", "yellow_y": "-554", "type": "1", "value": "door" }, { "id": "45", "blue_x": "146", "blue_y": "-415", "yellow_x": "148", "yellow_y": "-450", "type": "4", "value": "5" }, { "id": "46", "blue_x": "9", "blue_y": "-415", "yellow_x": "6", "yellow_y": "-554", "type": "1", "value": "blackboard" }, { "id": "47", "blue_x": "-132", "blue_y": "-415", "yellow_x": "-130", "yellow_y": "-554", "type": "1", "value": "window" }, { "id": "48", "blue_x": "-268", "blue_y": "-415", "yellow_x": "-268", "yellow_y": "-554", "type": "1", "value": "door" }, { "id": "49", "blue_x": "-410", "blue_y": "-415", "yellow_x": "-416", "yellow_y": "-554", "type": "2", "value": "2" }, { "id": "50", "blue_x": "-546", "blue_y": "-415", "yellow_x": "-550", "yellow_y": "-554", "type": "1", "value": "blackboard" }, { "id": "51", "blue_x": "-685", "blue_y": "-495", "yellow_x": "-685", "yellow_y": "-495", "type": "0", "value": "0" }]
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "7370c8bc-0e6d-4db0-84b1-3d09cb494848",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import pg from './pg'
// [
// {
// "id": 1,
// "time": 3,
// "delay": true
// },
// {
// "id": 2,
// "time": 3,
// "x": -445,
// "y": 193
// },
// {
// "id": 3,
// "time": 3,
// "delay": 0.2
// },
// {
// "id": 4,
// "time": 0,
// "aniname" : "normal"
// },
// {
// "id": 5,
// "time": 1,
// "delay": true
// },
// {
// "id": 6,
// "time": 0,
// "aniname" : "wrong"
// },
// {
// "id": 7,
// "time": 0,
// "audionode" : "sahua"
// }
// ]
class Movement {
loadTween(node, movementList) {
return new Promise((resolve, reject) => {
let tween = cc.tween(node);
movementList.forEach(moment => {
if (moment.delay) this.loadDelay(tween, moment.time);
// if (moment.aniname) this.loadDBArmature(tween, moment);
if (moment.audionode) this.loadAudio(node, tween, moment);
this.loadCCNode(tween, moment);
});
tween.call(() => {
setTimeout(() => {
resolve('');
}, 0);
})
tween.start();
});
}
//延迟处
private loadDelay(tween, time) {
tween.delay(time)
}
//拓展cc.node对应的属性处理
private loadCCNode(tween, moment) {
let obj: any = {};
if (moment.delay) return;//有等待不执行其他操作
if (moment.x && moment.x != "" && moment.y && moment.y != "") {
obj.position = cc.v2(moment.x, moment.y);
}
tween.to(moment.time, obj)
}
private loadDBArmature(tween, moment) {
// tween.delay(0)
// tween.call(() => {
// pg.animation.playDragonBone(this.node, moment.aniname);
// })
}
private loadAudio(node, tween, moment) {
tween.delay(0)
tween.call(() => {
let audioNode = node.getChildByName(moment.audionode);
let audioClip = audioNode.getComponent(cc.AudioSource).clip;
cc.audioEngine.play(audioClip, false, 1);
})
}
}
let movement = new Movement();
export default movement;
\ No newline at end of file
{
"ver": "1.0.8",
"uuid": "1bc25c74-7629-4b0d-86ce-d0dc86930dab",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.8",
"uuid": "dcef5d00-e8d0-49a5-81dd-346aec8accfc",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import pg from "./pg";
const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
private player: cc.Node;
private robot: cc.Node;
onLoad() {
this.player = pg.view.find(this, "player");
this.robot = pg.view.find(this, "robot");
pg.event.on("player_point_update", (data) => {
this.updatePlayer(data.isRobot, data.num);
this.updateRobot(data.isRobot, data.num);
})
}
updatePlayer(isRobot, num) {
if (!isRobot && num >= 1 && num <= 6) {
let icon_player = pg.view.find(this.player, "icon_player");
let icon_player_dice = pg.view.find(this.player, "icon_player_dice");
pg.view.visible(icon_player, false);
pg.view.visible(icon_player_dice, true);
for (let i = 1; i <= 6; i++) {
let item = pg.view.find(icon_player_dice, "icon_" + i);
item.active = i == num;
}
} else {
let icon_player = pg.view.find(this.player, "icon_player");
let icon_player_dice = pg.view.find(this.player, "icon_player_dice");
pg.view.visible(icon_player, true);
pg.view.visible(icon_player_dice, false);
}
}
updateRobot(isRobot, num) {
if (isRobot && num >= 1 && num <= 6) {
let icon_robot = pg.view.find(this.robot, "icon_robot");
let icon_robot_dice = pg.view.find(this.robot, "icon_robot_dice");
pg.view.visible(icon_robot, false);
pg.view.visible(icon_robot_dice, true);
for (let i = 1; i <= 6; i++) {
let item = pg.view.find(icon_robot_dice, "icon_" + i);
item.active = i == num;
}
} else {
let icon_robot = pg.view.find(this.robot, "icon_robot");
let icon_robot_dice = pg.view.find(this.robot, "icon_robot_dice");
pg.view.visible(icon_robot, true);
pg.view.visible(icon_robot_dice, false);
}
}
start() {
}
// update (dt) {}
}
{
"ver": "1.0.8",
"uuid": "32f0c5ef-c279-403b-9f28-85405210208e",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import pg from "./pg";
const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
private text_tip: cc.Node;
private btn_audio_start: cc.Node;
private btn_audio_stop: cc.Node;
private speak_ske: cc.Node;
private bg_goodjob: cc.Node;
private bg_tryagain: cc.Node;
onLoad() {
this.text_tip = pg.view.find(this, "text_tip");
this.btn_audio_start = pg.view.find(this, "btn_audio_start");
this.btn_audio_stop = pg.view.find(this, "btn_audio_stop");
this.speak_ske = pg.view.find(this, "speak_ske");
this.bg_goodjob = pg.view.find(this, "bg_goodjob");
this.bg_tryagain = pg.view.find(this, "bg_tryagain");
this.text_tip.active = false;
this.btn_audio_start.active = false;
this.btn_audio_stop.active = false;
this.speak_ske.active = false;
this.bg_goodjob.active = false;
this.bg_tryagain.active = false;
pg.view.touchOn(this.btn_audio_start, this.onTouchStart, this);
pg.view.touchOn(this.btn_audio_stop, this.onTouchStop, this);
pg.event.on("speak_open", () => { this.open() })
}
open() {
this.text_tip.active = true;
this.btn_audio_start.active = true;
this.btn_audio_stop.active = false;
this.speak_ske.active = true;
this.bg_goodjob.active = false;
this.bg_tryagain.active = false;
}
close() {
this.text_tip.active = false;
this.btn_audio_start.active = false;
this.btn_audio_stop.active = false;
this.speak_ske.active = false;
this.bg_goodjob.active = false;
this.bg_tryagain.active = false;
}
onTouchStart() {
pg.view.playDBAnimation(this.speak_ske, "newAnimation", 0);
this.btn_audio_start.active = false;
this.btn_audio_stop.active = true;
}
onTouchStop() {
pg.view.playDBAnimation(this.speak_ske, "newAnimation", 1);
this.text_tip.active = false;
this.btn_audio_start.active = false;
this.btn_audio_stop.active = false;
this.speak_ske.active = false;
this.bg_goodjob.active = false;
this.bg_tryagain.active = false;
setTimeout(() => {
let score = Math.random() * 100 + 50;
if (score > 50) {
this.bg_goodjob.active = true;
setTimeout(() => {
this.close();
pg.event.emit("speak_success");
}, 2000);
} else {
this.bg_tryagain.active = true;
//需要处理提供两次机会。重置一次到open状态
setTimeout(() => {
this.close();
pg.event.emit("speak_fail");
}, 2000);
}
}, 200);
}
start() {
}
// update (dt) {}
}
{
"ver": "1.0.8",
"uuid": "33705c9d-cb1e-4b92-88ff-d157a7d79cf8",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
import pg from "./pg";
const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
onLoad() {
let panel_gray = pg.view.find(this, "panel_gray");
let btn_start = pg.view.find(this, "btn_start");
let btn_restart = pg.view.find(this, "btn_restart");
let bg_vs = pg.view.find(this, "bg_vs");
pg.view.touchOn(btn_start, this.onTouchStart, this);
panel_gray.active = true;
btn_start.active = true;
}
onTouchStart() {
let panel_gray = pg.view.find(this, "panel_gray");
let btn_start = pg.view.find(this, "btn_start");
let btn_restart = pg.view.find(this, "btn_restart");
let bg_vs = pg.view.find(this, "bg_vs");
panel_gray.active = true;
btn_start.active = false;
bg_vs.active = true;
setTimeout(() => {
bg_vs.active = false;
panel_gray.active = false;
pg.event.emit("game_start")
}, 100);
}
update(dt) { }
}
{
"ver": "1.0.8",
"uuid": "13dcba6f-c876-4e1c-a8f5-b3a0547ccb11",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
// Learn TypeScript:
// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import pg from "./pg";
const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
private bg_1: cc.Node;
private bg_2: cc.Node;
private bg_3: cc.Node;
private bg_4: cc.Node;
private bg_5: cc.Node;
private bg_6: cc.Node;
private bg_dice1: cc.Node;
private bg_dice2: cc.Node;
private bg_dice3: cc.Node;
private bg_dice4: cc.Node;
private bg_dice5: cc.Node;
private bg_dice6: cc.Node;
onLoad() {
this.bg_1 = pg.view.find(this, "bg_1");
this.bg_2 = pg.view.find(this, "bg_2");
this.bg_3 = pg.view.find(this, "bg_3");
this.bg_4 = pg.view.find(this, "bg_4");
this.bg_5 = pg.view.find(this, "bg_5");
this.bg_6 = pg.view.find(this, "bg_6");
this.bg_dice1 = pg.view.find(this, "bg_dice1");
this.bg_dice2 = pg.view.find(this, "bg_dice2");
this.bg_dice3 = pg.view.find(this, "bg_dice3");
this.bg_dice4 = pg.view.find(this, "bg_dice4");
this.bg_dice5 = pg.view.find(this, "bg_dice5");
this.bg_dice6 = pg.view.find(this, "bg_dice6");
}
private playing: boolean;
private num: number;
startAni() {
this.playing = true;
this.num = null;
}
stopAni(number) {
return new Promise((resolve, reject) => {
this.num = number;
this.playing = false;
setTimeout(() => {
resolve('');
}, 100);
});
}
start() {
}
updatePoint(number) {
if (!number) return;
if (this.num) {
for (let i = 1; i <= 6; i++) {
this[`bg_${i}`].active = false;
}
for (let i = 1; i <= 6; i++) {
this[`bg_dice${i}`].active = i == number;
}
} else {
for (let i = 1; i <= 6; i++) {
this[`bg_${i}`].active = i == number;
}
for (let i = 1; i <= 6; i++) {
this[`bg_dice${i}`].active = false;
}
}
}
update(dt) {
if (this.playing) {
let i = Math.floor(Math.random() * 6) + 1;
this.updatePoint(i);
} else {
this.updatePoint(this.num);
}
}
}
{
"ver": "1.0.8",
"uuid": "96a89d6c-d01a-480c-8b3b-38cf93279c5c",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"skipLibCheck": true, "skipLibCheck": true,
"outDir": "temp/vscode-dist", "outDir": "temp/vscode-dist",
"allowJs": true,
"forceConsistentCasingInFileNames": true "forceConsistentCasingInFileNames": true
}, },
"exclude": [ "exclude": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment