0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00
verdaccio/tsconfig.json
Juan Picado 0a0b772f52
feat: export module types (#3508)
* chore: export types to the module

* chore: remove unused dep

* chore: format

* Update package.json
2022-11-22 18:35:47 +01:00

17 lines
427 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"declaration": true,
"noImplicitAny": false,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"rootDir": "./src",
"outDir": "./build",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"exclude": ["node_modules", "**/*.spec.ts"],
"include": ["src/**/*.ts", "types/*.d.ts"]
}