26 lines
453 B
JSON
26 lines
453 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "CommonJS",
|
||
|
|
"moduleResolution": "Node",
|
||
|
|
"rootDir": "src",
|
||
|
|
"outDir": "dist",
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": [
|
||
|
|
"node",
|
||
|
|
"jest"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"dist",
|
||
|
|
"node_modules"
|
||
|
|
]
|
||
|
|
}
|