dioxus/packages/vscode-ext/tsconfig.json

28 lines
458 B
JSON
Raw Normal View History

2021-01-26 19:02:35 +00:00
{
"compilerOptions": {
"module": "commonjs",
2021-01-29 16:57:52 +00:00
"target": "ESNext",
2021-01-26 19:02:35 +00:00
"lib": [
2021-01-29 16:57:52 +00:00
"ESNext"
2021-01-26 19:02:35 +00:00
],
"outDir": "out",
"rootDir": "src",
"sourceMap": true
},
"include": [
"src"
],
"exclude": [
"node_modules",
".vscode-test"
],
"references": [
{
"path": "./client"
},
{
"path": "./server"
}
]
}