mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
28 lines
651 B
JSON
28 lines
651 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
},
|
|
"include": ["src"],
|
|
}
|