From 9d44a009682d21fa69d72f62729b735ecf4cff28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=AB=8B=E5=B8=AE?= <3294713004@qq.com> Date: Mon, 23 Dec 2024 13:42:18 +0800 Subject: [PATCH] =?UTF-8?q?Update:=20vscode=E4=B8=AD=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E5=88=AB=E5=90=8D=E6=94=AF=E6=8C=81=E8=B7=B3=E8=BD=AC=E5=88=B0?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- boards/default_src/arduino_avr/jsconfig.json | 15 +++++++++++++++ boards/default_src/arduino_esp32/jsconfig.json | 18 ++++++++++++++++++ .../default_src/arduino_esp8266/jsconfig.json | 18 ++++++++++++++++++ .../micropython_esp32/jsconfig.json | 18 ++++++++++++++++++ .../micropython_esp32c2/jsconfig.json | 18 ++++++++++++++++++ .../micropython_esp32c3/jsconfig.json | 18 ++++++++++++++++++ .../micropython_esp32s2/jsconfig.json | 18 ++++++++++++++++++ .../micropython_esp32s3/jsconfig.json | 18 ++++++++++++++++++ .../micropython_k210_mixgoai/jsconfig.json | 18 ++++++++++++++++++ .../jsconfig.json | 18 ++++++++++++++++++ .../jsconfig.json | 18 ++++++++++++++++++ .../micropython_robot/jsconfig.json | 18 ++++++++++++++++++ boards/default_src/python_mixpy/jsconfig.json | 15 +++++++++++++++ .../default_src/python_pyodide/jsconfig.json | 18 ++++++++++++++++++ boards/default_src/python_skulpt/jsconfig.json | 18 ++++++++++++++++++ .../python_skulpt_car/jsconfig.json | 18 ++++++++++++++++++ .../python_skulpt_mixtoy/jsconfig.json | 18 ++++++++++++++++++ 17 files changed, 300 insertions(+) create mode 100644 boards/default_src/arduino_avr/jsconfig.json create mode 100644 boards/default_src/arduino_esp32/jsconfig.json create mode 100644 boards/default_src/arduino_esp8266/jsconfig.json create mode 100644 boards/default_src/micropython_esp32/jsconfig.json create mode 100644 boards/default_src/micropython_esp32c2/jsconfig.json create mode 100644 boards/default_src/micropython_esp32c3/jsconfig.json create mode 100644 boards/default_src/micropython_esp32s2/jsconfig.json create mode 100644 boards/default_src/micropython_esp32s3/jsconfig.json create mode 100644 boards/default_src/micropython_k210_mixgoai/jsconfig.json create mode 100644 boards/default_src/micropython_nrf51822_microbit/jsconfig.json create mode 100644 boards/default_src/micropython_nrf51822_mithoncc/jsconfig.json create mode 100644 boards/default_src/micropython_robot/jsconfig.json create mode 100644 boards/default_src/python_mixpy/jsconfig.json create mode 100644 boards/default_src/python_pyodide/jsconfig.json create mode 100644 boards/default_src/python_skulpt/jsconfig.json create mode 100644 boards/default_src/python_skulpt_car/jsconfig.json create mode 100644 boards/default_src/python_skulpt_mixtoy/jsconfig.json diff --git a/boards/default_src/arduino_avr/jsconfig.json b/boards/default_src/arduino_avr/jsconfig.json new file mode 100644 index 00000000..143a8a42 --- /dev/null +++ b/boards/default_src/arduino_avr/jsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/arduino": [ + "../arduino" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/arduino_esp32/jsconfig.json b/boards/default_src/arduino_esp32/jsconfig.json new file mode 100644 index 00000000..d6b6671d --- /dev/null +++ b/boards/default_src/arduino_esp32/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/arduino": [ + "../arduino" + ], + "@mixly/arduino-avr": [ + "../arduino_avr" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/arduino_esp8266/jsconfig.json b/boards/default_src/arduino_esp8266/jsconfig.json new file mode 100644 index 00000000..d6b6671d --- /dev/null +++ b/boards/default_src/arduino_esp8266/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/arduino": [ + "../arduino" + ], + "@mixly/arduino-avr": [ + "../arduino_avr" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_esp32/jsconfig.json b/boards/default_src/micropython_esp32/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_esp32/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_esp32c2/jsconfig.json b/boards/default_src/micropython_esp32c2/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_esp32c2/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_esp32c3/jsconfig.json b/boards/default_src/micropython_esp32c3/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_esp32c3/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_esp32s2/jsconfig.json b/boards/default_src/micropython_esp32s2/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_esp32s2/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_esp32s3/jsconfig.json b/boards/default_src/micropython_esp32s3/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_esp32s3/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_k210_mixgoai/jsconfig.json b/boards/default_src/micropython_k210_mixgoai/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_k210_mixgoai/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_nrf51822_microbit/jsconfig.json b/boards/default_src/micropython_nrf51822_microbit/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_nrf51822_microbit/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_nrf51822_mithoncc/jsconfig.json b/boards/default_src/micropython_nrf51822_mithoncc/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_nrf51822_mithoncc/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/micropython_robot/jsconfig.json b/boards/default_src/micropython_robot/jsconfig.json new file mode 100644 index 00000000..1e4522a1 --- /dev/null +++ b/boards/default_src/micropython_robot/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/micropython": [ + "../micropython" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/python_mixpy/jsconfig.json b/boards/default_src/python_mixpy/jsconfig.json new file mode 100644 index 00000000..986b8152 --- /dev/null +++ b/boards/default_src/python_mixpy/jsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/python_pyodide/jsconfig.json b/boards/default_src/python_pyodide/jsconfig.json new file mode 100644 index 00000000..e7d38a65 --- /dev/null +++ b/boards/default_src/python_pyodide/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/python-mixpy": [ + "../python_mixpy" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/python_skulpt/jsconfig.json b/boards/default_src/python_skulpt/jsconfig.json new file mode 100644 index 00000000..e7d38a65 --- /dev/null +++ b/boards/default_src/python_skulpt/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/python-mixpy": [ + "../python_mixpy" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/python_skulpt_car/jsconfig.json b/boards/default_src/python_skulpt_car/jsconfig.json new file mode 100644 index 00000000..9b1ef6b8 --- /dev/null +++ b/boards/default_src/python_skulpt_car/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/python-skulpt": [ + "../python_skulpt" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/boards/default_src/python_skulpt_mixtoy/jsconfig.json b/boards/default_src/python_skulpt_mixtoy/jsconfig.json new file mode 100644 index 00000000..9b1ef6b8 --- /dev/null +++ b/boards/default_src/python_skulpt_mixtoy/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@mixly/python": [ + "../python" + ], + "@mixly/python-skulpt": [ + "../python_skulpt" + ] + } + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file