examples/tutorial/basic-2: Remove typescript

This commit is contained in:
armaniferrante 2021-04-09 09:34:55 -07:00
parent fe2ada85b7
commit ce8263b858
No known key found for this signature in database
GPG Key ID: 58BEF301E91F7828
2 changed files with 3 additions and 12 deletions

View File

@ -1,5 +1,6 @@
import assert from 'assert'
import * as anchor from '@project-serum/anchor'
const assert = require('assert');
const anchor = require('@project-serum/anchor');
describe('basic-2', () => {
const provider = anchor.Provider.local()

View File

@ -1,10 +0,0 @@
{
"compilerOptions": {
"types": ["mocha", "chai"],
"typeRoots": ["./node_modules/@types"],
"lib": ["es2015"],
"module": "commonjs",
"target": "es6",
"esModuleInterop": true
}
}