Prevent standalone builds from modifying the tsconfig.json.

This commit is contained in:
Enrico Ros
2024-02-18 15:12:59 -08:00
parent 72bb31881a
commit 6c51a36dbc
+4 -1
View File
@@ -35,6 +35,9 @@
"~/server/*": ["src/server/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts",
// this is here only because otherwise, during standalone build the process would update this file
"dist/types/**/*.ts"
],
"exclude": ["node_modules", "dist", "electron"]
}