18 lines
399 B
JSON
18 lines
399 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"types": ["node"],
|
|
"ignoreDeprecations": "6.0"
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|