slint/api/node/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

10 lines
166 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "esnext",
"declaration": true,
},
"include": [
"index.ts"
],
}