# 十二.javascript转换

  • tsconfig.json
{
    "compilerOptions": {
        "outDir": "./built", // ts
        "allowJs": true,
        "target": "es5"
    },
    "include": [
        "./src/**/*"
    ]
}
1
2
3
4
5
6
7
8
9
10