File: //usr/share/opensearch-dashboards/plugins/assistantDashboards/tsconfig.json
{
// extend OpenSearch Dashboards's tsconfig, or use your own settings
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "react",
"allowJs": true,
"baseUrl": ".",
"target": "esnext",
"module": "commonjs",
"outDir": "./target",
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowUnusedLabels": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"useUnknownInCatchVariables": false,
"alwaysStrict": false,
"noImplicitUseStrict": false,
"types": ["jest", "node"]
},
"include": [
"test/**/*",
"index.ts",
"config.ts",
"public/**/*.ts",
"public/**/*.tsx",
"server/**/*.ts",
"common/**/*.ts",
"../../typings/**/*"
],
"exclude": ["node_modules", "*/node_modules/"]
}