@vlayer/sdk 0.1.0-nightly-20241021-1eb6b14 → 0.1.0-nightly-20241022-004c3c4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/tsconfig.json +1 -6
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -1,22 +1,17 @@
|
|
1
1
|
{
|
2
|
+
"extends": "../tsconfig.base.json",
|
2
3
|
"compilerOptions": {
|
3
4
|
"lib": [
|
4
5
|
"ESNext"
|
5
6
|
],
|
6
|
-
"module": "esnext",
|
7
|
-
"target": "esnext",
|
8
7
|
"moduleResolution": "bundler",
|
9
8
|
"moduleDetection": "force",
|
10
9
|
"allowImportingTsExtensions": true,
|
11
|
-
"strict": true,
|
12
10
|
"downlevelIteration": true,
|
13
|
-
"skipLibCheck": true,
|
14
11
|
"jsx": "preserve",
|
15
12
|
"allowSyntheticDefaultImports": true,
|
16
13
|
"forceConsistentCasingInFileNames": true,
|
17
14
|
"allowJs": true,
|
18
|
-
"noEmit": true,
|
19
|
-
"composite": true,
|
20
15
|
"types": [
|
21
16
|
"bun" // add Bun global
|
22
17
|
],
|