28 lines
652 B
JSON
28 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"declarationDir": "./dist/types",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./src/",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
],
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"1.6.8/*": ["./1.6.8/*"],
|
|
},
|
|
},
|
|
"tsc-alias": {
|
|
"resolveFullPaths": true,
|
|
},
|
|
} |