tsconfig.json 1.2 KB

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "types": ["vuepress-types"],
  4. "target": "es6", // Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'.
  5. "module": "commonjs", // Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
  6. "rootDir": "./docs",
  7. // "outDir": "./lib", // 编译后生成的文件目录
  8. "strict": true, // 开启严格的类型检测
  9. "declaration": true, // 生成 `.d.ts` 文件
  10. "experimentalDecorators": true, // 开启装饰器
  11. "removeComments": true, // 去除注释
  12. "noImplicitAny": true, // 在表达式和声明上有隐含的 any类型时报错。
  13. "esModuleInterop": true, // 支持别名导入
  14. "moduleResolution": "node" // 此处设置为node,才能解析import xx from 'xx'
  15. },
  16. "include": ["docs/.vuepress/**/*.ts", "docs/.vuepress/**/*.vue"],
  17. "exclude": ["node_modules"]
  18. }