1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

Revert paths on tsconfig.build

This commit is contained in:
Adria Navarro 2023-08-01 14:18:54 +02:00
parent 0f9ae3fa66
commit 953aead95c
2 changed files with 5 additions and 5 deletions

View file

@ -12,10 +12,7 @@
"declaration": true,
"types": ["node"],
"outDir": "dist",
"skipLibCheck": true,
"paths": {
"@budibase/types": ["../types/src"]
}
"skipLibCheck": true
},
"include": ["**/*.js", "**/*.ts"],
"exclude": [

View file

@ -2,7 +2,10 @@
"extends": "./tsconfig.build.json",
"compilerOptions": {
"composite": true,
"baseUrl": "."
"baseUrl": ".",
"paths": {
"@budibase/types": ["../types/src"]
}
},
"include": ["**/*.js", "**/*.ts"],
"exclude": ["node_modules", "dist"]