22 lines
No EOL
484 B
JSON
22 lines
No EOL
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
// We target a minimum Node version of 12.9.0: https://stackoverflow.com/a/59787575
|
|
"target": "es2019",
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"strict": false,
|
|
"esModuleInterop": false,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": false,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "build"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
} |