mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
558fcafc71
* fix: format code prettier, enable ci * chore: add trivago import prettier pluggin
17 lines
415 B
JSON
17 lines
415 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "lib",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules", "**/*.spec.ts"],
|
|
"include": ["src/**/*.ts", "test/**/*.ts", "types/*.d.ts"]
|
|
}
|