diff --git a/README.md b/README.md index e7a4c19..22e5c35 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ TypeScript是JavaScript的超集并且能够编译输出为纯粹的JavaScript. * [深入](./doc/handbook/declaration%20files/Deep%20Dive.md) * [发布](./doc/handbook/declaration%20files/Publishing.md) * [使用](./doc/handbook/declaration%20files/Consumption.md) -* [工程配置](./doc/handbook/README.md) +* [工程配置](./doc/handbook/tsconfig.json.md) * [tsconfig.json](./doc/handbook/tsconfig.json.md) * [NPM包的类型](./doc/handbook/Typings%20for%20NPM%20Packages.md) * [编译选项](./doc/handbook/Compiler%20Options.md) diff --git a/doc/handbook/README.md b/doc/handbook/README.md new file mode 100644 index 0000000..0f0f58a --- /dev/null +++ b/doc/handbook/README.md @@ -0,0 +1,25 @@ +# Table of Contents + +* [基础类型](./Basic Types.md) +* [变量声明](./Variable Declarations.md) +* [接口](./Interfaces.md) +* [类](./Classes.md) +* [函数](./Functions.md) +* [泛型](./Generics.md) +* [枚举](./Enums.md) +* [类型推论](./Type Inference.md) +* [类型兼容性](./Type Compatibility.md) +* [高级类型](./Advanced Types.md) +* [Symbols](./Symbols.md) +* [Iterators 和 Generators](./Iterators and Generators.md) +* [模块](./Modules.md) +* [命名空间](./Namespaces.md) +* [命名空间和模块](./Namespaces and Modules.md) +* [模块解析](./Module Resolution.md) +* [声明合并](./Declaration Merging.md) +* [书写.d.ts文件](./Writing Definition Files.md) +* [JSX](./JSX.md) +* [Decorators](./Decorators.md) +* [混入](./Mixins.md) +* [三斜线指令](./Triple-Slash Directives.md) +* [JavaScript文件里的类型检查](./Type Checking JavaScript Files.md) diff --git a/doc/handbook/tutorials/README.md b/doc/handbook/tutorials/README.md index 43c187c..684e3a4 100644 --- a/doc/handbook/tutorials/README.md +++ b/doc/handbook/tutorials/README.md @@ -1,9 +1,9 @@ # Table of Contents -* [ASP.NET Core](./doc/handbook/tutorials/ASP.NET Core.md) -* [ASP.NET 4](./doc/handbook/tutorials/ASP.NET 4.md) -* [Gulp](./doc/handbook/tutorials/Gulp.md) -* [Knockout.js](./doc/handbook/tutorials/Knockout.md) -* [React与webpack](./doc/handbook/tutorials/React & Webpack.md) -* [Angular 2](./doc/handbook/tutorials/Angular 2.md) -* [从JavaScript迁移到TypeScript](./doc/handbook/tutorials/Migrating from JavaScript.md) +* [ASP.NET Core](./ASP.NET Core.md) +* [ASP.NET 4](./ASP.NET 4.md) +* [Gulp](./Gulp.md) +* [Knockout.js](./Knockout.md) +* [React与webpack](./React & Webpack.md) +* [Angular 2](./Angular 2.md) +* [从JavaScript迁移到TypeScript](./Migrating from JavaScript.md) diff --git a/doc/wiki/README.md b/doc/wiki/README.md new file mode 100644 index 0000000..4de4f31 --- /dev/null +++ b/doc/wiki/README.md @@ -0,0 +1,9 @@ +# Table of Contents + +* [TypeScript里的this](./this-in-TypeScript.md) +* [编码规范](./coding_guidelines.md) +* [常见编译错误](./Common Errors.md) +* [支持TypeScript的编辑器](./TypeScript-Editor-Support.md) +* [结合ASP.NET v5使用TypeScript](./Using-TypeScript-With-ASP.NET-5.md) +* [架构概述](./Architectural-Overview.md) +* [发展路线图](./Roadmap.md) diff --git a/preface.md b/preface.md index 487a7d6..0a15051 100644 --- a/preface.md +++ b/preface.md @@ -63,7 +63,7 @@ TypeScript目前还在积极的开发完善之中,不断地会有新的特性 * [深入](./doc/handbook/declaration files/Deep Dive.html) * [发布](./doc/handbook/declaration files/Publishing.html) * [使用](./doc/handbook/declaration files/Consumption.html) -* [工程配置](./doc/handbook/README.html) +* [工程配置](./doc/handbook/tsconfig.json.html) * [tsconfig.json](./doc/handbook/tsconfig.json.html) * [NPM包的类型](./doc/handbook/Typings for NPM Packages.html) * [编译选项](./doc/handbook/Compiler Options.html)