build: 👷 fix little things around ts building
This commit is contained in:
parent
0024507ed5
commit
db61631708
@ -9,5 +9,6 @@ tests/.phpunit.cache
|
|||||||
|
|
||||||
node_modules/
|
node_modules/
|
||||||
js/
|
js/
|
||||||
|
css/
|
||||||
|
|
||||||
build/
|
build/
|
||||||
|
@ -15,7 +15,6 @@ class MyConfig extends Config
|
|||||||
$rules['curly_braces_position']['classes_opening_brace'] = 'next_line_unless_newline_at_signature_end';
|
$rules['curly_braces_position']['classes_opening_brace'] = 'next_line_unless_newline_at_signature_end';
|
||||||
$rules['phpdoc_separation'] = false;
|
$rules['phpdoc_separation'] = false;
|
||||||
$rules['phpdoc_to_comment'] = false;
|
$rules['phpdoc_to_comment'] = false;
|
||||||
$rules['single_line_comment_style'] = false;
|
|
||||||
return $rules;
|
return $rules;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,9 +2,8 @@
|
|||||||
"extends": "@vue/tsconfig/tsconfig.json",
|
"extends": "@vue/tsconfig/tsconfig.json",
|
||||||
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
|
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowJs": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"target": "ESNext",
|
"target": "ES2022",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "Bundler",
|
"moduleResolution": "Bundler",
|
||||||
"noImplicitAny": false,
|
"noImplicitAny": false,
|
||||||
@ -12,8 +11,5 @@
|
|||||||
"strict": true,
|
"strict": true,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"allowImportingTsExtensions": true,
|
"allowImportingTsExtensions": true,
|
||||||
},
|
}
|
||||||
"vueCompilerOptions": {
|
|
||||||
"target": 3.3,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user