-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
29 lines (29 loc) · 950 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"noEmit": true,
"target": "ES2023",
"module": "ESNext",
"lib": ["ES2023"],
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"@algorandfoundation/algorand-typescript-testing": ["./src/index.ts"],
"@algorandfoundation/algorand-typescript-testing/runtime-helpers": ["./src/runtime-helpers.ts"],
"@algorandfoundation/algorand-typescript-testing/internal": ["./src/internal/index.ts"],
"@algorandfoundation/algorand-typescript-testing/internal/arc4": ["./src/internal/arc4.ts"],
"@algorandfoundation/algorand-typescript-testing/internal/op": ["./src/internal/op.ts"]
}
},
"include": [
"src/**/*.ts",
"scripts/**/*.ts",
"examples/**/*.ts",
"rollup.config.ts",
"tests/**/*.ts",
"vitest.config.mts",
"eslint.config.mjs"
],
"exclude": []
}