vscode-azurefunctions/tsconfig.json

30 строки
623 B
JSON
Исходник Постоянная ссылка Обычный вид История

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
],
"sourceMap": true,
"rootDir": ".",
2017-10-02 19:08:42 +03:00
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"baseUrl": "./",
"paths": {
"*": [
"node_modules/@types/*",
"*"
]
2021-11-16 00:39:26 +03:00
}
},
"exclude": [
"node_modules",
".vscode-test",
"gulpfile.ts"
]
}