Skip to content

Commit 2c3bebd

Browse files
committed
chore: update plugin configuration and dependencies
1 parent 430e8af commit 2c3bebd

2 files changed

Lines changed: 21 additions & 23 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.turbo

tsconfig.json

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,24 @@
11
{
2-
"extends": "../../tsconfig.json",
32
"compilerOptions": {
4-
"outDir": "./dist",
5-
"rootDir": "./src",
6-
"target": "es2020",
7-
"module": "commonjs",
8-
"noEmit": false,
9-
"declaration": true,
10-
"strict": true,
3+
"outDir": "dist",
4+
"rootDir": "src",
5+
"lib": ["ESNext", "dom"],
6+
"module": "Preserve",
7+
"moduleResolution": "Bundler",
8+
"strict": false,
119
"esModuleInterop": true,
1210
"skipLibCheck": true,
13-
"forceConsistentCasingInFileNames": true,
14-
"allowImportingTsExtensions": false,
15-
"lib": [
16-
"es2020",
17-
"dom"
18-
],
19-
"moduleResolution": "node"
11+
"forceConsistentCasingInFileNames": false,
12+
"allowImportingTsExtensions": true,
13+
"declaration": true,
14+
"emitDeclarationOnly": true,
15+
"resolveJsonModule": true,
16+
"noImplicitAny": false,
17+
"allowJs": true,
18+
"checkJs": false,
19+
"noEmitOnError": false,
20+
"moduleDetection": "force",
21+
"allowArbitraryExtensions": true
2022
},
21-
"include": [
22-
"src/**/*"
23-
],
24-
"exclude": [
25-
"node_modules",
26-
"dist"
27-
]
28-
}
23+
"include": ["src/**/*.ts"]
24+
}

0 commit comments

Comments
 (0)