add package.json to base tsconf files

This commit is contained in:
Max Leiter 2022-05-02 20:44:20 -07:00
parent 0ce89950e9
commit a77c00b2d6
No known key found for this signature in database
GPG key ID: A3512F2F2F17EBDA
2 changed files with 3 additions and 2 deletions

View file

@ -4,6 +4,7 @@
// "lib": ["es2019" ],
"module": "commonjs",
"target": "ESNext",
"rootDir": ".",
"baseUrl": ".",
"allowJs": true,
"noImplicitAny": false,
@ -18,5 +19,5 @@
// "skipLibCheck": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"files": ["./src/index.d.ts"]
"files": ["./package.json", "./src/index.d.ts"]
}

View file

@ -10,7 +10,7 @@
"exclude": ["./node_modules"],
"references": [
{
"path": "./src,"
"path": "./src"
},
{
"path": "./client"