Skip to content

Instantly share code, notes, and snippets.

@joshtynjala
Created October 16, 2020 19:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshtynjala/a9b0344b844406aba220b75681923fdd to your computer and use it in GitHub Desktop.
Save joshtynjala/a9b0344b844406aba220b75681923fdd to your computer and use it in GitHub Desktop.
asconfig.json: How to create an Apache Flex project with modules in Visual Studio Code
{
"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
}
]
}
@joshtynjala
Copy link
Author

joshtynjala commented Oct 16, 2020

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment