sphinx-relay/tsconfig.json
kevkevin 905717edb8
Unit tests (Jest) (#411)
* 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
2022-08-23 11:56:03 -06:00

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"]
}