Create a new ActionScript library project in Visual Studio Code - BowlerHatLLC/vscode-as3mxml GitHub Wiki
Learn to set up a project in Visual Studio Code to create a SWC library.
Development Setup
-
Install the ActionScript & MXML extension for Visual Studio Code.
-
Create a new directory for your project, and open it in Visual Studio Code.
To open a directory, select the File menu → Open... or click Open Folder button in the Explorer pane.
-
Create a file named asconfig.json in the root directory of your project, and add the following content:
{ "type": "lib", "compilerOptions": { "source-path": [ "src" ], "include-sources": [ "src" ], "output": "bin/MyLibrary.swc" } }In addition to
include-sources, you may also use theinclude-classesorinclude-namespacescompiler options to include code in your library. See Library Compiler Options for asconfig.json for details.To include the Adobe AIR libraries, set the
configfield to"air"or"airmobile":{ "type": "lib", "config": "airmobile", "compilerOptions": { "source-path": [ "src" ], "include-sources": [ "src" ], "output": "bin/MyLibrary.swc" } } -
Create directory named src.
-
Inside src, create any classes that you want to include in the library SWC.