36 lines
827 B
JSON
36 lines
827 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["dom", "ESNext"],
|
|
"experimentalDecorators": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@stores/*": ["./src/stores/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@api/*": ["./src/api/*"],
|
|
"@types/*": ["./src/types/*"]
|
|
},
|
|
"outDir": "dist",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"./package.json",
|
|
"./forge.config.ts",
|
|
"*.ts",
|
|
"vite.renderer.config.ts"
|
|
]
|
|
}
|