22 lines
519 B
JSON
22 lines
519 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ES2024", "DOM"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2024",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|