Skip to content

Create a new ActionScript library project in Visual Studio Code

Josh Tynjala edited this page Sep 18, 2017 · 11 revisions
  1. Install the NextGen ActionScript extension for Visual Studio Code.

  2. 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.

  3. Choose an ActionScript SDK for your workspace.

  4. Create a file named asconfig.json at the root of your project, and add the following content:

    {
    	"type": "lib",
    	"compilerOptions": {
    		"source-path": [
    			"src"
    		],
    		"include-sources": [
    			"src"
    		]
    	}
    }
  5. Create directory named src.

  6. Inside src, places any classes that you want to include in the library.

Next Steps

Clone this wiki locally