vscode-texinfo/tsconfig.json

21 lines
419 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-11-02 21:14:05 +00:00
"ES2019",
2020-10-03 18:04:18 +00:00
],
2020-11-02 07:10:13 +00:00
"esModuleInterop": true,
2020-10-24 21:45:32 +00:00
"strictNullChecks": true,
2020-10-03 18:04:18 +00:00
"sourceMap": true,
"rootDir": "src",
"strict": true,
2020-11-02 21:14:05 +00:00
"noImplicitReturns": true,
2020-10-03 18:04:18 +00:00
},
"exclude": [
"node_modules",
2020-11-02 21:14:05 +00:00
"*.config.ts",
],
2020-10-03 18:04:18 +00:00
}