Skip to content

Commit

Permalink
Merge pull request #21 from algorandfoundation/fix-tsconfig
Browse files Browse the repository at this point in the history
fix: update the ts config to the correct settings
  • Loading branch information
neilcampbell authored May 6, 2024
2 parents dc69a47 + 535bfdb commit de031db
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src/**/*.ts"],
"include": ["smart_contracts/**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src/**/*.ts"],
"include": ["smart_contracts/**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src/**/*.ts"],
"include": ["smart_contracts/**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"]
}

0 comments on commit de031db

Please sign in to comment.