Skip to content

Commit 457eafe

Browse files
authored
Merge pull request #42 from algorandfoundation/update-ts-config
fix: Update tsconfig to use lib ESNext which matches puya-ts repo
2 parents e608080 + aec562c commit 457eafe

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<a href="https://github.com/algorandfoundation/algokit-typescript-template"><img src="https://bafybeid5333wj4vvxc3yyif3dzrewowos46sq2vj55r7u3vyhazhoyffo4.ipfs.nftstorage.link/" width=60%></a>
2+
<a href="https://github.com/algorandfoundation/algokit-typescript-template"><img src="./docs/images/banner.png" width=60%></a>
33
</div>
44

55
<p align="center">

docs/images/banner.png

328 KB
Loading

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)