16 lines
351 B
JSON
16 lines
351 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"inlineSourceMap": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "Node16",
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "NodeNext",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["./src/**/*"]
|
|
}
|