2023-04-08 22:17:52 +03:00
|
|
|
{
|
2023-05-03 01:19:28 +03:00
|
|
|
"include": ["./test/*"],
|
2023-04-08 22:17:52 +03:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"ts-node": {
|
|
|
|
// Do not forget to `npm i -D tsconfig-paths`
|
|
|
|
"require": ["tsconfig-paths/register"]
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
2023-04-18 00:56:57 +03:00
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~NODE 18 STANDARD~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
"target": "es2022",
|
2023-05-09 19:47:36 +03:00
|
|
|
"module": "CommonJS",
|
2023-04-18 00:56:57 +03:00
|
|
|
"lib": ["es2022"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2023-04-08 22:17:52 +03:00
|
|
|
"outDir": "./build",
|
2023-04-18 00:56:57 +03:00
|
|
|
"resolveJsonModule": true,
|
2023-04-08 22:17:52 +03:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2023-05-03 01:19:28 +03:00
|
|
|
"test/*": ["test/*"],
|
|
|
|
"@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"],
|
2023-04-08 22:17:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|