tsconfig: Specify include

Specify, what folders to include in the compilation process. This limits the scope, might reduce compilation time and will resolve errors outputted to the console during build.
This commit is contained in:
regexowl 2025-05-09 09:29:06 +02:00 committed by Klara Simickova
parent 7784c0ddc5
commit 7c7427761b

View file

@ -24,5 +24,6 @@
"./src/test/mocks/*"
]
}
}
},
"include": ["./src", "./playwright"]
}