Project templates (#295)

Moved default projects from pxtarget.json to libs/templates/
This commit is contained in:
Guillaume Jenkins
2016-10-28 14:12:25 -07:00
committed by GitHub
parent 7936517a03
commit f045942297
10 changed files with 126 additions and 40 deletions

View File

View File

@ -0,0 +1,7 @@
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .
`);

View File

@ -0,0 +1,12 @@
{
"name": "{0} bit",
"dependencies": {
"core": "*",
"radio": "*"
},
"description": "",
"files": [
"main.ts",
"README.md"
]
}

View File

@ -0,0 +1,8 @@
{
"compilerOptions": {
"target": "es5",
"noImplicitAny": true,
"outDir": "built",
"rootDir": "."
}
}