20 lines
440 B
JSON
20 lines
440 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "node20",
|
|
"moduleResolution": "node16",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"noEmitOnError": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["tests", "dist"]
|
|
}
|