File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 "noImplicitAny" : true ,
1313 "importHelpers" : false ,
1414 "inlineSources" : false ,
15- "removeComments" : true
15+ "removeComments" : true ,
16+ "resolveJsonModule" : true
1617 },
1718 "include" : [
1819 " ./lib/*.ts"
Original file line number Diff line number Diff line change 11{
2- "extends" : " ./tsconfig.build .json" ,
2+ "extends" : " ./tsconfig.base .json" ,
33 "include" : [
44 " ./*.ts" ,
55 " lib/*.ts" ,
Original file line number Diff line number Diff line change 1+ import { compilerOptions } from './tsconfig.base.json'
12import { defineConfig } from 'vitest/config'
23import { playwright } from '@vitest/browser-playwright'
34
@@ -8,6 +9,10 @@ const browsers: ('chromium' | 'firefox' | 'webkit')[] = [
89]
910
1011export default defineConfig ( {
12+ build : {
13+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
14+ target : compilerOptions . target
15+ } ,
1116 test : {
1217 projects : [
1318 ...browsers . map ( browser => ( {
You can’t perform that action at this time.
0 commit comments