22 lines
528 B
JSON
22 lines
528 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"declaration": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"lib": ["ES2023"],
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"target": "ES2023",
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["dist", "node_modules"]
|
||
|
|
}
|