38 lines
1004 B
JSON
38 lines
1004 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM"],
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"downlevelIteration": true,
|
|
"allowImportingTsExtensions": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitThis": false,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"noErrorTruncation": true,
|
|
"isolatedModules": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noImplicitOverride": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"ts-node": {
|
|
"esm": true
|
|
}
|
|
}
|