Skip to content

Commit

Permalink
Merge pull request #99 from near/jsconfig
Browse files Browse the repository at this point in the history
Decorators enabled in jsconfig
  • Loading branch information
volovyks authored Jun 7, 2022
2 parents b600241 + 5ffc2eb commit 985e3e9
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/clean-state/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/cross-contract-call/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/fungible-token/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/lockable-fungible-token/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/non-fungible-token/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/status-message/jsconfig copy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/status-message/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions examples/template/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}
8 changes: 8 additions & 0 deletions tests/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
},
"exclude": [
"node_modules"
],
}

0 comments on commit 985e3e9

Please sign in to comment.