Remove trailing , in tsconfig.json (#177)

This commit is contained in:
Thomas Gaudin 2020-10-06 15:07:22 +02:00 committed by GitHub
parent f4176bb2dd
commit 431bd4d58e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ const tsconfig = `{
"extends": "@tsconfig/svelte/tsconfig.json", "extends": "@tsconfig/svelte/tsconfig.json",
"include": ["src/**/*"], "include": ["src/**/*"],
"exclude": ["node_modules/*", "__sapper__/*", "public/*"], "exclude": ["node_modules/*", "__sapper__/*", "public/*"]
}` }`
const tsconfigPath = path.join(projectRoot, "tsconfig.json") const tsconfigPath = path.join(projectRoot, "tsconfig.json")
fs.writeFileSync(tsconfigPath, tsconfig) fs.writeFileSync(tsconfigPath, tsconfig)