19 lines
517 B
JSON
19 lines
517 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"lib": ["ES2024", "DOM"],
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"noEmit": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": false,
|
||
|
|
"target": "ES2024",
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "tests/**/*.ts", "esbuild.config.mjs"]
|
||
|
|
}
|