8.7 版本发布—WinterCG 兼容性第一部分
了解更多

使用 TypeScript 的项目使用tsconfig.json来控制 TypeScript 编译。我们的模板附带精心挑选的默认值,但是如果您需要,可以微调编译器选项

有关更多信息,请参阅官方TypeScript 文档

json
{
  "compilerOptions": {
    "module": "esnext",
    "target": "es2017",
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "noEmitHelpers": true,
    "noEmitOnError": true,
    "skipLibCheck": true,
    "lib": ["es2017", "dom"],
    "baseUrl": ".",
    "paths": {
      "~/*": ["src/*"],
      "@/*": ["src/*"]
    }
  },
  "include": ["src/**/*", "activity.android.ts", "application.android.ts"],
  "files": ["./references.d.ts"],
  "exclude": ["node_modules", "platforms"]
}