gotlin/tools/vscode-gotlin/tsconfig.json
Pavel Flegr 8f4f858d86 init
2026-03-05 14:55:09 +01:00

18 lines
294 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"lib": [
"ES2020"
],
"outDir": "out",
"rootDir": "src",
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
]
}