diff --git a/templates/README.md b/templates/README.md deleted file mode 100644 index 8a19be8bd..000000000 --- a/templates/README.md +++ /dev/null @@ -1,2 +0,0 @@ -TODO ---- diff --git a/templates/_tsconfig.json b/templates/_tsconfig.json deleted file mode 100644 index c37b76ecc..000000000 --- a/templates/_tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "outDir": "lib" - }, - "include": [ - "./src/" - ] -} diff --git a/templates/build.json b/templates/build.json deleted file mode 100644 index 49a393b6b..000000000 --- a/templates/build.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugins": [ - [ - "build-plugin-component" - ] - ] -} diff --git a/templates/package.json b/templates/package.json deleted file mode 100644 index f5691c9ea..000000000 --- a/templates/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "@ali/lowcode-engine-", - "version": "0.0.0", - "description": "xxx for Ali lowCode engine", - "main": "lib/index.js", - "files": [ - "lib" - ], - "scripts": { - "build": "tsc", - "test": "ava", - "test:snapshot": "ava --update-snapshots" - }, - "ava": { - "compileEnhancements": false, - "snapshotDir": "test/fixtures/__snapshots__", - "extensions": [ - "ts" - ], - "require": [ - "ts-node/register" - ] - }, - "license": "MIT" -} diff --git a/templates/src/index.d.ts b/templates/src/index.d.ts deleted file mode 100644 index e69de29bb..000000000 diff --git a/templates/src/index.js b/templates/src/index.js deleted file mode 100644 index 9517d2edf..000000000 --- a/templates/src/index.js +++ /dev/null @@ -1,3 +0,0 @@ -'use strict'; -// -// # sourceMappingURL=index.js.map diff --git a/templates/src/index.js.map b/templates/src/index.js.map deleted file mode 100644 index 67b67fe20..000000000 --- a/templates/src/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";AAAA,EAAE"} \ No newline at end of file diff --git a/templates/src/index.ts b/templates/src/index.ts deleted file mode 100644 index 8337712ea..000000000 --- a/templates/src/index.ts +++ /dev/null @@ -1 +0,0 @@ -// diff --git a/templates/test/foobar.ts b/templates/test/foobar.ts deleted file mode 100644 index 7a14c4b2d..000000000 --- a/templates/test/foobar.ts +++ /dev/null @@ -1,5 +0,0 @@ -import test from 'ava'; - -test('foobar', t => { - t.pass(); -});