{
// extend OpenSearch Dashboards's tsconfig, or use your own settings
"extends": "../../tsconfig.json",
// tell the TypeScript compiler where to find your source files
"include": ["server/**/*", "public/**/*", "utils/**/*", "models/**/*", "test/**/*"],
"exclude": ["node_modules", "*/node_modules/"],
"compilerOptions": {
"skipLibCheck": true,
"esModuleInterop": true,
"outDir": "./target"
}
}