Point tsconfig to client and server TS files only
Previous config defined a glob for all TS files. But only the files required from the client or server root files need to be transpiled. This prevents the whole project build failinig due to one corrupt source file that might not be committed to the repository, and isn't actually used anywhere.
This commit is contained in:
parent
f68343f03e
commit
9826ba784c
@ -10,7 +10,8 @@
|
|||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"noImplicitAny": false
|
"noImplicitAny": false
|
||||||
},
|
},
|
||||||
"include": [
|
"files": [
|
||||||
"./src/**/*"
|
"./src/index.ts",
|
||||||
|
"./src/client.tsx"
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user