aqua-vscode/tsconfig.json
InversionSpaces 89fcde5d26
feat(tests): Add unit tests [LNG-323] (#81)
* Add imports tests

* Add unit tests on document info

* Add workflow

* PR fixes

* Update server/src/test/info.test.ts

Co-authored-by: shamsartem <shamsartem@gmail.com>

* PR fixes

* Update target, PR fixes

* Update .vscodeignore

---------

Co-authored-by: shamsartem <shamsartem@gmail.com>
2024-01-18 10:25:09 +01:00

27 lines
559 B
JSON

{
"allowJs": true,
"declaration": true,
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"outDir": "out",
"rootDir": "src",
"sourceMap": true
},
"types": ["node"],
"include": [],
"exclude": ["node_modules", ".vscode-test"],
"references": [
{
"path": "./client"
},
{
"path": "./server"
},
{
"path": "./integration-tests"
}
],
"extends": "@tsconfig/node16-strictest/tsconfig.json"
}