20 lines
313 B
JSON
20 lines
313 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2022",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es2022"
|
||
|
],
|
||
|
"outDir": "./dist",
|
||
|
"rootDir": "./src",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"types": [
|
||
|
"node"
|
||
|
],
|
||
|
"moduleResolution": "node"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
]
|
||
|
}
|