aqua-vscode/tsconfig.json
2024-01-16 09:36:45 +03:00

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