slint/api/node/__test__/tsconfig.json
Simon Hausmann e4cc80aeea
Fix typescript errors shown in VS code when editing node test files (#3999)
The nodenext module resolution was only passed to ts-node, but vscode didn't see it.
Use a dedicated tsconfig.json for vscode as well as ts-node.
2023-11-24 17:22:38 +08:00

9 lines
134 B
JSON

{
"compilerOptions": {
"module": "nodenext",
"target": "esnext",
},
"include": [
"*.mts"
],
}