adjust ts configs for showcase

This commit is contained in:
sebastien 2024-05-03 19:12:23 +02:00
parent 2c995530c0
commit 57665a8463
2 changed files with 4 additions and 14 deletions

View file

@ -1,15 +1,9 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.base.client.json",
"compilerOptions": {
"noEmit": false,
"composite": true,
"incremental": true,
"tsBuildInfoFile": "./lib/.tsbuildinfo-client",
"moduleResolution": "bundler",
"module": "esnext",
"target": "esnext",
"rootDir": "src",
"outDir": "lib"
"outDir": "lib",
"tsBuildInfoFile": "lib/.tsbuildinfo-client"
},
"include": ["src/client", "src/*.d.ts"],
"exclude": ["**/__tests__/**"]

View file

@ -1,10 +1,6 @@
{
"extends": "../../tsconfig.base.json",
"references": [
{
"path": "./tsconfig.client.json"
}
],
"references": [{"path": "./tsconfig.client.json"}],
"compilerOptions": {
"noEmit": false,
"incremental": true,