22 lines
599 B
JSON
22 lines
599 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "nodenext",
|
|
"lib": ["ES2020"],
|
|
"moduleResolution": "nodenext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@bitsquare/nopy": ["./packages/nopy/src"],
|
|
"@bitsquare/nopy-cubes": ["./packages/nopy-cubes/src"],
|
|
"@bitsquare/keyman": ["./packages/keyman/src"]
|
|
}
|
|
},
|
|
"exclude": ["coverage", "node_modules", "dist"]
|
|
}
|