forked from sombochea/verdaccio-ui
97e8448098
* chore: refactoring version page * refactor: migrate version page to hooks * refactor: Version page better imports * fix: #100 render not found on click item * test: add test for version page * chore: update mocks * test: add scenario for not found package * chore: fix wrong mock path * chore: update mock * chore: add todo list
25 lines
490 B
JSON
25 lines
490 B
JSON
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"outDir": "build",
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
},
|
|
"include": [
|
|
"src",
|
|
"types/*.d.ts", "scripts/lib", "node_modules/config"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|