mirror of
https://github.com/fluencelabs/aqua-vscode
synced 2025-03-15 22:00:52 +00:00
* 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>
27 lines
559 B
JSON
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"
|
|
}
|