Files
vscode-extension-samples/.scripts/tsconfig.json
Matt Bierner 1a3ac0c722 Switch internal scripts to ts
Also adds a formatting script and runs it against all TS files in the samples
2024-10-28 16:41:49 -07:00

15 lines
197 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2022",
"lib": [
"ES2022"
],
"noEmit": true,
"strict": true
},
"ts-node": {
"esm": true
}
}