Skip to content

Commit 07a4dcb

Browse files
committed
revert: build: update TS config to avoid expensive globbing
This commit reverts a1c3ee5. The reverted commit caused linting during Git hooks to fail locally.
1 parent 45564d8 commit 07a4dcb

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

etc/eslint/parser-options/typescript.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818

1919
'use strict';
2020

21+
// MODULES //
22+
23+
var path = require( 'path' );
24+
var rootDir = require( './../../../lib/node_modules/@stdlib/_tools/utils/root-dir' );
25+
26+
2127
// MAIN //
2228

2329
/**
@@ -34,7 +40,7 @@ var options = {};
3440
* @memberof options
3541
* @type {string}
3642
*/
37-
options.project = './tsconfig.json';
43+
options.project = path.join( rootDir(), 'tsconfig.json' );
3844

3945
/**
4046
* The source type.

tsconfig.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,12 @@
3434
"types": []
3535
},
3636
"include": [
37-
"**/docs/types/*.ts",
38-
"**/@stdlib/types/*.ts"
37+
"docs/types/index.d.ts",
38+
"docs/types/test.ts",
39+
"lib/node_modules/**/docs/types/index.d.ts",
40+
"lib/node_modules/**/docs/types/test.ts",
41+
"lib/node_modules/**/@stdlib/types/index.d.ts",
42+
"lib/node_modules/**/@stdlib/types/test.ts"
3943
],
4044
"exclude": [
4145
"node_modules"

0 commit comments

Comments
 (0)