thinkjs/template/www/development.ts
2016-06-02 17:36:54 +08:00

21 lines
420 B
TypeScript

var thinkjs = require('thinkjs');
var path = require('path');
var rootPath = path.dirname(__dirname);
var instance = new thinkjs({
APP_PATH: rootPath + path.sep + 'app',
RUNTIME_PATH: rootPath + path.sep + 'runtime',
ROOT_PATH: rootPath,
RESOURCE_PATH: __dirname,
env: 'development'
});
// Build code from src to app directory.
instance.compile({
log: true,
type: 'ts' //TypeScript
});
instance.run();