mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
aa763baec1
Add two different settings for compile and develop. https://www.typescriptlang.org/docs/handbook/project-references.html
15 lines
447 B
JSON
15 lines
447 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["**/build", "node_modules", "**/node_modules", "**/coverage", "**/*.spec.ts", "**/test", "**/__tests__", "**/*.test.ts"]
|
|
}
|