Skip to content

Commit

Permalink
fixup package
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Dec 11, 2023
1 parent 9f73300 commit 7edba6d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/test-proposals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,19 @@
],
"scripts": {
"build": "echo No build step",
"test": "ava"
"test": "ava",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error lint:*",
"lint:types": "tsc",
"lint:eslint": "eslint ."
},
"dependencies": {
"tsx": "^3.12.8"
},
"devDependencies": {
"ava": "^5.3.0"
},
"ava": {
"extensions": {
"js": true,
Expand Down
19 changes: 19 additions & 0 deletions packages/test-proposals/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"checkJs": false, // opt in
"maxNodeModuleJsDepth": 2,
},
"include": [
"*.js",
"*.ts",
"proposals/**/*.js",
"proposals/**/*.ts",
"src/**/*.js",
"test/**/*.js",
"test/**/*.ts",
"tools/**/*.js",
]
}

0 comments on commit 7edba6d

Please sign in to comment.