cosmos-explorer/tsconfig.library.json

22 lines
580 B
JSON
Raw Normal View History

2024-01-09 11:15:45 +00:00
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": false,
"sourceMap": true,
"noEmit": false,
"outDir": "./dist",
"declaration": true,
"declarationMap": true
},
"exclude": [
"./src/**/__mocks__/**/*",
"./src/**/*.test.tsx",
"./src/**/*.test.ts",
"./src/Explorer/Notebook/NotebookRenderer/markdown-cell.tsx",
"./src/Explorer/Notebook/NotebookRenderer/NotebookRenderer.tsx",
"./src/Explorer/Notebook/NotebookRenderer/NotebookReadOnlyRenderer.tsx",
"./test/**/*",
"externals/jquery.typeahead.min.js"
]
}