Move templates to directly under libs/ (#303)

This commit is contained in:
Guillaume Jenkins
2016-11-04 18:32:13 -07:00
committed by Peli de Halleux
parent e5dc046fcc
commit 349a385f97
14 changed files with 6 additions and 6 deletions

0
libs/tsprj/README.md Normal file
View File

7
libs/tsprj/main.ts Normal file
View File

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

12
libs/tsprj/pxt.json Normal file
View File

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

8
libs/tsprj/tsconfig.json Normal file
View File

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