sdk-monorepo/tsconfig.json

39 lines
1.2 KiB
JSON

{
"include": ["./test/*"],
"exclude": ["node_modules"],
"ts-node": {
// Do not forget to `npm i -D tsconfig-paths`
"require": ["tsconfig-paths/register"]
},
"compilerOptions": {
// ~~~~~~~~~~~~~~~~~~~~~~~~~NODE 18 STANDARD~~~~~~~~~~~~~~~~~~~~~~~
"target": "es2022",
"module": "CommonJS",
"lib": ["es2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"outDir": "./dist",
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"test/*": ["test/*"],
"@tornado/sdk-registry": ["@tornado/sdk-registry/src/index.ts"],
"@tornado/sdk-chain": ["@tornado/sdk-chain/src/index.ts"],
"@tornado/sdk-core": ["@tornado/sdk-core/src/index.ts"],
"@tornado/sdk-crypto": ["@tornado/sdk-crypto/src/index.ts"],
"@tornado/sdk-data": ["@tornado/sdk-data/src/index.ts"],
"@tornado/sdk-utils": ["@tornado/sdk-utils/src/index.ts"],
"@tornado/sdk-web": ["@tornado/sdk-web/src/index.ts"],
}
}
}