1
0
mirror of https://github.com/alibaba/anyproxy.git synced 2025-05-31 13:38:27 +00:00
anyproxy/tsconfig.json
2018-08-28 11:59:43 +08:00

23 lines
402 B
JSON

{
"compilerOnSave": true,
"compilerOptions": {
"moduleResolution": "node",
"target": "es5",
"module": "commonjs",
"baseUrl": "./lib",
"allowJs": true,
"lib": ["es6"],
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"outDir": "./dist"
},
"exclude": [
"node_modules",
"./dist"
],
"include": [
"./lib/**/*",
"./bin/**/*"
]
}