Merge pull request #1180 from yyovil/add/type-resolution

Add node type resolution for non-web packages
This commit is contained in:
Dhruv Sharma 2026-04-13 19:56:36 +05:30 committed by GitHub
commit ab1e4fb069
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
27 changed files with 32 additions and 26 deletions

View File

@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"noEmit": true,
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"

View File

@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist-server",
"rootDir": "server",

6
tsconfig.node.json Normal file
View File

@ -0,0 +1,6 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"types": ["node"]
}
}