asconfig.json: How to create an Apache Flex project with modules in Visual Studio Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"config": "flex", | |
"compilerOptions": { | |
"source-path": "src", | |
"output": "bin/MyProject.swf" | |
}, | |
"mainClass": "MyProject", | |
"modules": [ | |
{ | |
"file": "src/MyModule.mxml", | |
"output": "bin/MyModule.swf", | |
"optimize": true | |
}, | |
{ | |
"file": "src/AnotherModule.mxml", | |
"output": "bin/AnotherModule.swf", | |
"optimize": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An example asconfig.json project file for Visual Studio Code that builds an Apache Flex application with modules.
Looking for a modern alternative to Adobe Flash Builder? Try the ActionScript & MXML language extension for Visual Studio Code.