19 lines
419 B
JSON
19 lines
419 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "src",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": false,
|
||
|
|
"sourceMap": false
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["src/**/*.test.ts"]
|
||
|
|
}
|