mirror of
https://github.com/fluencelabs/aqua-vscode
synced 2025-03-15 22:00:52 +00:00
27 lines
561 B
JSON
27 lines
561 B
JSON
{
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES5",
|
|
"outDir": "out",
|
|
"rootDir": "src",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src"],
|
|
"types": ["node"],
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
"references": [
|
|
{
|
|
"path": "./client"
|
|
},
|
|
{
|
|
"path": "./server"
|
|
},
|
|
{
|
|
"path": "./integration-tests"
|
|
}
|
|
],
|
|
"extends": "@tsconfig/node16-strictest/tsconfig.json"
|
|
}
|