mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-20 15:34:20 +00:00
23 lines
402 B
JSON
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/**/*"
|
|
]
|
|
}
|