31 lines
558 B
JSON
31 lines
558 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": ["ES2022"],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": false,
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"tests/**/*",
|
|
"test/**/*",
|
|
"scripts/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"data",
|
|
"uploads",
|
|
"coverage",
|
|
"dist"
|
|
]
|
|
}
|