31 lines
668 B
JSON
31 lines
668 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"removeComments": true,
|
|
},
|
|
"tsc-alias": {
|
|
"resolveFullPaths": true,
|
|
},
|
|
"exclude": ["node_modules"],
|
|
}
|