Skip to content

Commit a72f4ff

Browse files
committed
fix: Update tsconfig to use lib ESNext which matches puya-ts repo
1 parent e608080 commit a72f4ff

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AlgoKit Official Template for contributors
22

3-
This repository is a template for creating new AlgoKit projects. It includes a basic structure for creating a Algorand Python based smart contract project.
3+
This repository is a template for creating new AlgoKit projects. It includes a basic structure for creating a Algorand TypeScript based smart contract project.
44

55
## Pre-requisites
66

examples/production/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"moduleResolution": "Node",
1717
"resolveJsonModule": true,
1818
"isolatedModules": true,
19-
"noEmit": true
19+
"noEmit": true,
20+
"lib": ["ESNext"]
2021
},
2122
"include": ["smart_contracts/**/*.ts"],
2223
"exclude": ["node_modules", "dist", "coverage"]

examples/starter/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
"moduleResolution": "Node",
1717
"resolveJsonModule": true,
1818
"isolatedModules": true,
19-
"noEmit": true
19+
"noEmit": true,
20+
"lib": [
21+
"ESNext"
22+
],
2023
},
2124
"include": ["smart_contracts/**/*.ts"],
2225
"exclude": ["node_modules", "dist", "coverage"]

template_content/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
"moduleResolution": "Node",
1717
"resolveJsonModule": true,
1818
"isolatedModules": true,
19-
"noEmit": true
19+
"noEmit": true,
20+
"lib": [
21+
"ESNext"
22+
],
2023
},
2124
"include": ["smart_contracts/**/*.ts"],
2225
"exclude": ["node_modules", "dist", "coverage"]

0 commit comments

Comments
 (0)