-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 820 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "eslint-import-issue",
"version": "1.0.0",
"type": "module",
"imports": {
"#app/ts-first/*": [
"./src/ts-first/*.ts",
"./src/ts-first/*.tsx"
],
"#app/tsx-first/*": [
"./src/tsx-first/*.tsx",
"./src/tsx-first/*.ts"
]
},
"scripts": {
"lint": "eslint index.ts",
"lint:debug": "DEBUG=eslint-import-resolver-typescript eslint index.ts",
"check": "tsc --noEmit",
"check:debug": "tsc --noEmit --traceResolution"
},
"dependencies": {
"@eslint/js": "^9.37.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.28.1",
"globals": "^16.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"unrs-resolver": "^1.11.1"
}
}