Skip to content

Commit f71a50f

Browse files
committed
chore(repo): new lib test
1 parent b17b49b commit f71a50f

File tree

8 files changed

+91
-22
lines changed

8 files changed

+91
-22
lines changed

packages/core/auth-js/tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2+
"extends": "../../../tsconfig.base.json",
23
"include": ["src"],
34
"compilerOptions": {
5+
"composite": true,
46
"declaration": true,
57
"declarationMap": true,
68
"module": "CommonJS",

packages/core/functions-js/tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
2+
"extends": "../../../tsconfig.base.json",
23
"include": ["src"],
34
"exclude": ["node_modules/**/*.ts"],
45
"compilerOptions": {
56
"declaration": true,
7+
"composite": true,
68
"declarationMap": true,
79
"module": "CommonJS",
810
"outDir": "dist/main",

packages/core/postgrest-js/tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2+
"extends": "../../../tsconfig.base.json",
23
"include": ["src"],
34
"compilerOptions": {
5+
"composite": true,
46
"declaration": true,
57
"declarationMap": true,
68
"module": "CommonJS",

packages/core/realtime-js/tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2+
"extends": "../../../tsconfig.base.json",
23
"include": ["src"],
34
"compilerOptions": {
5+
"composite": true,
46
"declaration": true,
57
"declarationMap": true,
68
"module": "CommonJS",

packages/core/storage-js/tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
2+
"extends": "../../../tsconfig.base.json",
23
"include": ["src"],
34
"exclude": ["node_modules/**/*.ts"],
45
"compilerOptions": {
6+
"composite": true,
57
"declaration": true,
68
"declarationMap": true,
79
"module": "CommonJS",
Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
11
{
2-
"include": ["src"],
3-
"exclude": ["node_modules/**/*.ts"],
4-
"compilerOptions": {
5-
"declaration": true,
6-
"declarationMap": true,
7-
"module": "CommonJS",
8-
"outDir": "dist/main",
9-
"sourceMap": true,
10-
"target": "ES2015",
11-
12-
"strict": true,
13-
14-
"esModuleInterop": true,
15-
"moduleResolution": "Node",
16-
"isolatedModules": true,
17-
18-
"forceConsistentCasingInFileNames": true,
19-
"stripInternal": true,
20-
"allowSyntheticDefaultImports": true
21-
}
22-
}
2+
"extends": "../../../tsconfig.base.json",
3+
"files": [],
4+
"include": [],
5+
"references": [
6+
{
7+
"path": "../storage-js"
8+
},
9+
{
10+
"path": "../realtime-js"
11+
},
12+
{
13+
"path": "../postgrest-js"
14+
},
15+
{
16+
"path": "../functions-js"
17+
},
18+
{
19+
"path": "../auth-js"
20+
},
21+
{
22+
"path": "./tsconfig.lib.json"
23+
},
24+
{
25+
"path": "./tsconfig.module.json"
26+
}
27+
]
28+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"extends": "../../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"module": "ES2020",
5+
"outDir": "./dist/main",
6+
"rootDir": "src",
7+
"sourceMap": true,
8+
"target": "ES2015",
9+
"emitDeclarationOnly": false,
10+
11+
"stripInternal": true,
12+
"allowSyntheticDefaultImports": true,
13+
"esModuleInterop": true
14+
},
15+
"include": ["src/**/*.ts"],
16+
"exclude": ["src/**/*.spec.ts", "src/**/*.test.ts"],
17+
"references": [
18+
{
19+
"path": "../storage-js"
20+
},
21+
{
22+
"path": "../realtime-js"
23+
},
24+
{
25+
"path": "../postgrest-js"
26+
},
27+
{
28+
"path": "../functions-js"
29+
},
30+
{
31+
"path": "../auth-js"
32+
}
33+
]
34+
}

tsconfig.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,24 @@
22
"extends": "./tsconfig.base.json",
33
"compileOnSave": false,
44
"files": [],
5-
"references": []
5+
"references": [
6+
{
7+
"path": "./packages/core/functions-js"
8+
},
9+
{
10+
"path": "./packages/core/postgrest-js"
11+
},
12+
{
13+
"path": "./packages/core/realtime-js"
14+
},
15+
{
16+
"path": "./packages/core/supabase-js"
17+
},
18+
{
19+
"path": "./packages/core/storage-js"
20+
},
21+
{
22+
"path": "./packages/core/auth-js"
23+
}
24+
]
625
}

0 commit comments

Comments
 (0)