Skip to content

Commit e3e8c08

Browse files
committed
Remove TS from project
1 parent 1db514c commit e3e8c08

5 files changed

Lines changed: 21 additions & 318 deletions

File tree

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ coverage/
77
.github/
88
logo.svg
99
AUTHORS
10-
tsconfig.json

package.json

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"postcss-plugin"
1414
],
1515
"scripts": {
16-
"test": "jest --coverage && eslint . bin/* && check-dts && size-limit",
16+
"test": "jest --coverage && eslint . bin/* && size-limit",
1717
"unit": "jest"
1818
},
1919
"main": "lib/autoprefixer.js",
@@ -43,10 +43,6 @@
4343
"devDependencies": {
4444
"@logux/eslint-config": "^46.1.1",
4545
"@size-limit/preset-small-lib": "7.0.5",
46-
"@types/jest": "^27.0.3",
47-
"@typescript-eslint/eslint-plugin": "^5.8.1",
48-
"@typescript-eslint/parser": "^5.8.1",
49-
"check-dts": "^0.6.6",
5046
"clean-publish": "^3.4.4",
5147
"eslint": "^8.5.0",
5248
"eslint-config-standard": "^16.0.3",
@@ -56,10 +52,7 @@
5652
"eslint-plugin-promise": "^6.0.0",
5753
"jest": "^27.4.5",
5854
"postcss": "^8.4.5",
59-
"prettier": "^2.5.1",
60-
"size-limit": "^7.0.5",
61-
"ts-jest": "^27.1.2",
62-
"typescript": "^4.5.4"
55+
"size-limit": "^7.0.5"
6356
},
6457
"prettier": {
6558
"arrowParens": "avoid",
@@ -75,10 +68,8 @@
7568
}
7669
],
7770
"eslintConfig": {
78-
"extends": "@logux/eslint-config/ts",
71+
"extends": "@logux/eslint-config",
7972
"rules": {
80-
"security/detect-non-literal-regexp": "off",
81-
"security/detect-unsafe-regex": "off",
8273
"node/no-missing-require": "off",
8374
"no-unused-expressions": "off",
8475
"no-unused-vars": "off",
@@ -104,20 +95,16 @@
10495
],
10596
"globals": {
10697
"beforeEach": "readonly",
98+
"afterEach": "readonly",
10799
"afterAll": "readonly",
108100
"describe": "readonly",
109101
"expect": "readonly",
102+
"jest": "readonly",
110103
"it": "readonly"
111104
}
112105
},
113106
"jest": {
114-
"preset": "ts-jest",
115107
"testEnvironment": "node",
116-
"globals": {
117-
"ts-jest": {
118-
"isolatedModules": true
119-
}
120-
},
121108
"coverageThreshold": {
122109
"global": {
123110
"lines": 100

0 commit comments

Comments
 (0)