diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f5a4169..12608f8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # AlgoKit Official Template for contributors -This repository is a template for creating new AlgoKit projects. It includes a basic structure for creating a Algorand Python based smart contract project. +This repository is a template for creating new AlgoKit projects. It includes a basic structure for creating a Algorand TypeScript based smart contract project. ## Pre-requisites diff --git a/README.md b/README.md index ef08125..ef0bb97 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
diff --git a/docs/images/banner.png b/docs/images/banner.png new file mode 100644 index 0000000..aa38c9a Binary files /dev/null and b/docs/images/banner.png differ diff --git a/examples/production/tsconfig.json b/examples/production/tsconfig.json index 323e15c..a1e51b7 100644 --- a/examples/production/tsconfig.json +++ b/examples/production/tsconfig.json @@ -16,7 +16,8 @@ "moduleResolution": "Node", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true + "noEmit": true, + "lib": ["ESNext"] }, "include": ["smart_contracts/**/*.ts"], "exclude": ["node_modules", "dist", "coverage"] diff --git a/examples/starter/tsconfig.json b/examples/starter/tsconfig.json index 323e15c..d989075 100644 --- a/examples/starter/tsconfig.json +++ b/examples/starter/tsconfig.json @@ -16,7 +16,10 @@ "moduleResolution": "Node", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true + "noEmit": true, + "lib": [ + "ESNext" + ], }, "include": ["smart_contracts/**/*.ts"], "exclude": ["node_modules", "dist", "coverage"] diff --git a/template_content/tsconfig.json b/template_content/tsconfig.json index 323e15c..d989075 100644 --- a/template_content/tsconfig.json +++ b/template_content/tsconfig.json @@ -16,7 +16,10 @@ "moduleResolution": "Node", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true + "noEmit": true, + "lib": [ + "ESNext" + ], }, "include": ["smart_contracts/**/*.ts"], "exclude": ["node_modules", "dist", "coverage"]