add monaco editor core library

This commit is contained in:
mrsang
2021-04-13 20:03:53 +02:00
parent 163d4fa4ba
commit 3c2e622b3a
101 changed files with 1524 additions and 0 deletions

15
Antedit/README.md Normal file
View File

@ -0,0 +1,15 @@
# Antedit
This is an example project, generated by AntOS Development Kit
## Howto
Use the CodePad command palette to access to the SDK functionalities:
1. Create new project
2. Init the project from the current folder located in side bar
3. Build and run the project
4. Release the project in zip package
## Set up build target
Open the `project.json` file from the current project tree and add/remove
build target entries. Save the file

View File

@ -0,0 +1,3 @@
<afx-app-window apptitle="Antedit" width="500" height="400" data-id="Antedit">
<afx-hbox ></afx-hbox>
</afx-app-window>

View File

@ -0,0 +1,7 @@
class Antedit extends this.OS.application.BaseApplication
constructor: ( args ) ->
super "Antedit", args
main: () ->
this.OS.register "Antedit", Antedit

16
Antedit/package.json Normal file
View File

@ -0,0 +1,16 @@
{
"pkgname": "Antedit",
"app":"Antedit",
"name":"Antedit",
"description":"Antedit",
"info":{
"author": "",
"email": ""
},
"version":"0.0.1-a",
"category":"Other",
"iconclass":"fa fa-adn",
"mimes":["none"],
"dependencies":[],
"locale": {}
}

8
Antedit/project.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "Antedit",
"css": [],
"javascripts": [],
"coffees": ["coffees/main.coffee"],
"ts": [],
"copies": ["assets/scheme.html", "package.json", "README.md"]
}

19
Antedit/ts/main.ts Normal file
View File

@ -0,0 +1,19 @@
namespace OS {
export namespace application {
/**
*
* @class Antedit
* @extends {BaseApplication}
*/
export class Antedit extends BaseApplication {
constructor(args: AppArgumentsType[]) {
super("Antedit", args);
}
main(): void {
// YOUR CODE HERE
}
}
}
}