Skip to content

Commit

Permalink
1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
heifade committed Jan 11, 2018
1 parent df1740c commit 4bfcc8a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "fs-i",
"version": "1.1.6",
"version": "1.1.7",
"description": "file tools",
"main": "./es/index.js",
"module": "./es/index.js",
Expand Down
18 changes: 18 additions & 0 deletions project-config.ts
@@ -0,0 +1,18 @@
import { ProjectConfigModel } from "pcreate-config";

let projectConfig: ProjectConfigModel = {
projectType: "node",
compile: {
outDir: "./es/",
module: "commonjs",
target: "es5",
lib: ["es2015", "es2015.promise", "es2015.symbol"],
declaration: true
},
command: false,
documents: true,
unitTest: true,
sourceInclude: ["./src/**/*"]
};

export default projectConfig;

0 comments on commit 4bfcc8a

Please sign in to comment.