32 lines
800 B
JSON
32 lines
800 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ESNext", "DOM"],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["resources/scripts/*"]
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"resources/scripts/addons/advanced-admin/types"
|
|
]
|
|
},
|
|
"include": [
|
|
"resources/scripts/**/*",
|
|
"resources/scripts/addons/advanced-admin/types/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"public"
|
|
]
|
|
}
|