Skip to content

Commit 937eed6

Browse files
committed
fix: typescript eslint issues
1 parent 66d72a1 commit 937eed6

File tree

5 files changed

+9
-58
lines changed

5 files changed

+9
-58
lines changed

packages/addons/sitemap/admin/tsconfig.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/addons/sitemap/tsconfig.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

packages/core/admin/tsconfig.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/core/server/tsconfig.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

tsconfig.json

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,24 @@
11
{
22
"compilerOptions": {
3-
"rootDir": "./",
4-
"lib": ["DOM", "ES2015"],
5-
"target": "esnext",
6-
"module": "commonjs",
7-
"moduleResolution": "node",
8-
"esModuleInterop": true,
9-
"allowJs": true,
10-
"resolveJsonModule": true,
3+
"module": "ESNext",
4+
"target": "ESNext",
5+
"moduleResolution": "Bundler",
116
"strict": false,
12-
"declaration": true,
137
"skipLibCheck": true,
148
"forceConsistentCasingInFileNames": true,
159
"incremental": true,
10+
"esModuleInterop": true,
11+
"resolveJsonModule": true,
1612
"noEmitOnError": true,
13+
"noImplicitThis": true,
14+
"outDir": "dist",
15+
"rootDir": ".",
16+
"jsx": "react-jsx",
1717
"typeRoots": [
1818
"node_modules/@types",
1919
"types",
2020
"server/strapi.d.ts"
2121
],
22-
"jsx": "react-jsx",
23-
"allowSyntheticDefaultImports": true,
24-
// "noUnusedLocals": true,
25-
// "noUnusedParameters": true,
26-
// "removeComments": true,
27-
// "sourceMap": true,
28-
// "declarationMap": true,
29-
// "downlevelIteration": true,
30-
// "incremental": true,
31-
// "skipLibCheck": true,
3222
},
3323
"include": [
3424
"**/*.ts",

0 commit comments

Comments
 (0)