1 Star 0 Fork 0

ziscloud/ews-javascript-api

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
gulp.config.js 1.58 KB
Copy Edit Raw Blame History
module.exports = function() {
var root = './';
var temp = './.tmp/';
var typings = './src/js/typings/';
var config = {
/**
* File paths
*/
// All typescript settings
ts: {
// all typescript that we want to vet
files: [
'./src/**/*.ts',
],
// all typescript that we want to vet
testFiles: [
'./test/**/*.ts',
],
defs: typings + '**/*.ts',
output: '.tmp',
refs: typings + 'app.d.ts',
appRefs: '.tmp/typings/app-dts/',
transformFn: function (filepath) {
return '/// <reference path="..' + filepath + '" />';
},
tscOptions: {
target: 'ES5',
declarationFiles: true,
noExternalResolve: true,
module: 'commonjs',
noImplicitAny: true,
removeComments: false,
sortOutput: true
},
typings: typings
},
typedocFiles:[
'./**/*.ts',
'!./**/*.d.ts',
'!./WebService.Extra.ts',
'!./Microsoft.Exchange.WebServices.d__.ts',
],
build: './build/',
root: root,
source: 'src/',
temp: temp,
/**
* optimized files
*/
optimized: {
app: 'app.js',
lib: 'lib.js'
},
};
return config;
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/ziscloud/ews-javascript-api.git
git@gitee.com:ziscloud/ews-javascript-api.git
ziscloud
ews-javascript-api
ews-javascript-api
master

Search