Skip to content

Commit a760d46

Browse files
committed
chore(repo): some fixes
1 parent ed2a5fb commit a760d46

File tree

1 file changed

+21
-25
lines changed

1 file changed

+21
-25
lines changed
Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,24 @@
11
{
22
"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-
]
3+
"compilerOptions": {
4+
"composite": true,
5+
"declaration": true,
6+
"declarationMap": true,
7+
"module": "CommonJS",
8+
"moduleResolution": "Node",
9+
"rootDir": "src",
10+
"outDir": "dist/main",
11+
"sourceMap": true,
12+
"target": "ES2017",
13+
14+
"strict": true,
15+
16+
"esModuleInterop": true,
17+
"stripInternal": true,
18+
"allowSyntheticDefaultImports": true,
19+
"noImplicitOverride": false,
20+
"isolatedModules": false
21+
},
22+
"include": ["src"],
23+
"exclude": ["src/**/*.spec.ts", "src/**/*.test.ts", "test/**/*"]
2824
}

0 commit comments

Comments
 (0)