24 lines
423 B
JSON
24 lines
423 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./assets/admin/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"assets/admin/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"public"
|
|
]
|
|
} |