discord-vscode/tsconfig.json
2021-02-10 04:24:42 +01:00

22 lines
455 B
JSON

{
"compilerOptions": {
"strict": true,
"moduleResolution": "node",
"declaration": false,
"removeComments": false,
"alwaysStrict": true,
"pretty": true,
"target": "ES2019",
"module": "commonjs",
"lib": ["ESNext"],
"outDir": "dist",
"sourceMap": true,
"inlineSources": true,
"incremental": true,
"noEmitHelpers": true,
"importHelpers": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true
}
}