sbv2-solana/javascript/solana.js/tsconfig.base.json

33 lines
771 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"include": [
"./src/**/*"
],
"compilerOptions": {
"lib": [
"ES2021",
"ES2022.Object",
"DOM"
],
"moduleResolution": "nodenext",
"inlineSourceMap": false,
"inlineSources": false,
"declaration": true,
"declarationMap": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"composite": true,
"skipLibCheck": true,
// strict
"strict": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": true,
"noImplicitReturns": true,
"esModuleInterop": true
}
}