21 lines
366 B
JSON
21 lines
366 B
JSON
{
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "./",
|
|
"paths": {},
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"tsconfig.vitest.json"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
}
|