fixed tsconfig, enabled sourcemap
This commit is contained in:
parent
9b72defc95
commit
7164496a68
@ -31,13 +31,13 @@ module.exports = {
|
||||
/* ... */
|
||||
],
|
||||
installOptions: {
|
||||
sourceMap: false,
|
||||
sourceMap: true,
|
||||
},
|
||||
devOptions: {
|
||||
/* ... */
|
||||
},
|
||||
buildOptions: {
|
||||
sourceMaps: false,
|
||||
sourceMaps: true,
|
||||
clean: true,
|
||||
},
|
||||
proxy: {
|
||||
|
@ -1,6 +1,7 @@
|
||||
const sveltePreprocess = require("svelte-preprocess")
|
||||
module.exports = {
|
||||
preprocess: sveltePreprocess({
|
||||
sourceMap: true,
|
||||
defaults: {
|
||||
script: "typescript",
|
||||
},
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "@tsconfig/svelte/tsconfig.json",
|
||||
|
||||
"include": ["src/**/*", , "types/**/*"],
|
||||
"include": ["src/**/*", "types/**/*"],
|
||||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"typeRoots": ["./node_modules/@types", "./types"],
|
||||
|
Loading…
Reference in New Issue
Block a user