19 lines
460 B
JSON
19 lines
460 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"types": ["node", "jest"],
|
||
|
|
"rootDir": "."
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "tests/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|