26 lines
700 B
JSON
26 lines
700 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["./resources/js/*"],
|
|
"ziggy-js": ["./vendor/tightenco/ziggy"]
|
|
}
|
|
},
|
|
"include": [
|
|
"resources/js/**/*.ts",
|
|
"resources/js/**/*.tsx",
|
|
"resources/js/**/*.d.ts",
|
|
"resources/js/components/pagination.jsx",
|
|
"resources/js/pages/admin/roles/index_roles.jsx"
|
|
]
|
|
}
|