2018-10-22 23:47:37 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "es6",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
2021-10-14 12:22:11 +03:00
|
|
|
"target": "es6",
|
2018-10-22 23:47:37 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-04-29 09:48:14 +03:00
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom"
|
|
|
|
],
|
2018-10-22 23:47:37 +03:00
|
|
|
"declaration": true,
|
2021-10-14 12:22:11 +03:00
|
|
|
"outDir": "./dist-esm",
|
2022-04-29 09:48:14 +03:00
|
|
|
"importHelpers": true,
|
|
|
|
"paths": {
|
|
|
|
"@azure/arm-operationalinsights": [
|
|
|
|
"./src/index"
|
|
|
|
]
|
|
|
|
}
|
2018-10-22 23:47:37 +03:00
|
|
|
},
|
2022-04-29 09:48:14 +03:00
|
|
|
"include": [
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./test/**/*.ts",
|
|
|
|
"samples-dev/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|