vscode-texinfo/tsconfig.json

20 lines
383 B
JSON
Raw Normal View History

2020-10-03 18:04:18 +00:00
{
"compilerOptions": {
2020-10-10 17:36:05 +00:00
"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
],
2020-10-24 21:45:32 +00:00
"strictNullChecks": true,
2020-10-03 18:04:18 +00:00
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noImplicitReturns": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}