vscode-texinfo/tsconfig.json

19 lines
349 B
JSON
Raw Normal View History

2020-10-03 18:04:18 +00:00
{
"compilerOptions": {
"module": "commonjs",
2020-10-08 14:31:54 +00:00
"target": "ES2019",
2020-10-03 18:04:18 +00:00
"outDir": "out",
"lib": [
2020-10-08 14:31:54 +00:00
"ES2019"
2020-10-03 18:04:18 +00:00
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noImplicitReturns": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}