1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/tsconfig.json

26 lines
510 B
JSON
Raw Normal View History

{
2020-03-03 23:59:19 +01:00
"compileOnSave": false,
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"declaration": true,
"noImplicitAny": false,
"incremental": false,
"strict": true,
"strictNullChecks": true,
2019-09-26 18:22:14 +02:00
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
},
"exclude": [
2020-03-03 23:59:19 +01:00
"**/build",
"node_modules",
2020-03-03 23:59:19 +01:00
"**/node_modules",
"**/coverage",
"**/*.spec.ts",
"**/test",
"**/__tests__",
"**/*.test.ts"
]
}