discord-vscode/tsconfig.json

23 lines
455 B
JSON
Raw Normal View History

2017-11-23 13:06:21 +00:00
{
"compilerOptions": {
"strict": true,
"moduleResolution": "node",
"declaration": false,
"removeComments": false,
"alwaysStrict": true,
"pretty": true,
2021-02-10 03:24:42 +00:00
"target": "ES2019",
"module": "commonjs",
2021-02-10 03:24:42 +00:00
"lib": ["ESNext"],
"outDir": "dist",
2017-11-23 13:06:21 +00:00
"sourceMap": true,
"inlineSources": true,
"incremental": true,
"noEmitHelpers": true,
"importHelpers": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true
2019-09-13 11:07:45 +00:00
}
2017-11-23 13:06:21 +00:00
}