Adjust tsconfig usage (#760)

This commit is contained in:
Jaco
2023-05-18 12:10:56 +03:00
committed by GitHub
parent 7bb148eea9
commit 36c7da623b
19 changed files with 218 additions and 182 deletions
+1 -1
View File
@@ -22,7 +22,7 @@
"main": "index.js",
"dependencies": {
"colord": "^2.9.3",
"tslib": "^2.5.0"
"tslib": "^2.5.1"
},
"devDependencies": {
"@polkadot/util": "^12.2.1",
+3
View File
@@ -5,5 +5,8 @@
"outDir": "./build",
"rootDir": "./src"
},
"exclude": [
"**/*.spec.ts"
],
"references": []
}
+16
View File
@@ -0,0 +1,16 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "..",
"outDir": "./build",
"rootDir": "./src",
"emitDeclarationOnly": false,
"noEmit": true
},
"include": [
"**/*.spec.ts"
],
"references": [
{ "path": "../ui-shared/tsconfig.build.json" }
]
}