verdaccio/tsconfig.json

19 lines
453 B
JSON

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