mirror of
https://github.com/stakwork/sphinx-relay.git
synced 2026-08-13 12:33:24 +02:00
* adding unit testing to the node project * added to git workflow * added some more coverage and updated workflow so the label is correct * added some more coverage and updated workflow so the label is correct * remove unused dependency * added new test file for json
22 lines
566 B
JSON
22 lines
566 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"types": ["node", "jest"],
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"pretty": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["./app.ts", "./src/*", "./src/**/*", "./config/*.json"],
|
|
"exclude": ["node_modules"]
|
|
}
|