15 lines
368 B
JSON
15 lines
368 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2016",
|
||
|
|
"module": "nodenext",
|
||
|
|
"declaration": true,
|
||
|
|
"outDir": "./lib",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"lib": ["ESNext"]
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|