18 lines
381 B
JSON
18 lines
381 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"lib": ["esnext"],
|
|
"types": ["node"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|