fix: disables inline sourcemaps for admin dist

This commit is contained in:
James
2020-12-28 13:31:37 -05:00
parent 64cf32146a
commit 8090b2a23b
2 changed files with 3 additions and 1 deletions

View File

@@ -27,7 +27,6 @@
},
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"resolveJsonModule": true,
"inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
},

View File

@@ -1,5 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
},
"exclude": [
"src/admin",
"**/*.spec.js",