- added own provider for drive methods
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m13s
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m13s
- renamed middleware Role and Can to role_middleware and can_middleware - added some typing for inertia vue3 components - npm updates
This commit is contained in:
parent
cb51a4136f
commit
296c8fd46e
67 changed files with 2515 additions and 1913 deletions
|
@ -1,14 +1,18 @@
|
|||
{
|
||||
"extends": "@adonisjs/tsconfig/tsconfig.app.json",
|
||||
"include": [
|
||||
"**/*"
|
||||
"**/*",
|
||||
// "resources/**/*.ts",
|
||||
// "resources/**/*.d.ts",
|
||||
// "resources/**/*.vue"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"build",
|
||||
"public",
|
||||
"resources"
|
||||
"public",
|
||||
// "resources/js/**/*",
|
||||
],
|
||||
// "exclude": ["./inertia/**/*"]
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"outDir": "build",
|
||||
|
@ -21,8 +25,9 @@
|
|||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"./resources/js/*"
|
||||
"@/*": ["./resources/js/*.js"],
|
||||
"#resources/*": [
|
||||
"./resources/js/*.js"
|
||||
],
|
||||
"#controllers/*": [
|
||||
"./app/controllers/*.js"
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue