1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/tsconfig.base.json
Juan Picado 5167bb528f
feat: UI search uses search endpoint for global search (#3057)
* UI search uses search endpoint for global search

* improve sorting and error handling

* give priority to private packages

* order by private package

* add tests, improve testing

* add changeset

* addjust settings

* remove old index search implementation

* update lock file

* relocate fastify package

* fix circular dependency

* fix wrong import

* fix tests
2022-03-27 21:42:52 +02:00

28 lines
578 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"noImplicitAny": false,
"strict": true,
"declaration": true,
"jsx": "react",
"strictNullChecks": true,
"types": ["node", "jest", "express"],
"resolveJsonModule": true,
// "preserveSymlinks": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"exclude": [
"**/build",
"node_modules",
"**/node_modules",
"**/coverage",
"**/*.spec.ts",
"**/test",
"**/__tests__",
"**/*.test.ts"
]
}