23 lines
488 B
JSON
23 lines
488 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
},
|
|
"removeComments": true,
|
|
},
|
|
"tsc-alias": {
|
|
"resolveFullPaths": true,
|
|
},
|
|
}
|