25 lines
484 B
JSON
25 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"removeComments": false,
|
|
"alwaysStrict": true,
|
|
"pretty": true,
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"outDir": "dist",
|
|
"sourceRoot": "./",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"incremental": true,
|
|
"noEmitHelpers": true,
|
|
"importHelpers": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|