mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-05-15 13:03:44 +00:00
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["dom", "esnext"],
|
|
"types": ["vite/client", "jest"],
|
|
"typeRoots": ["./node_modules/@types/", "./types","./node_modules"],
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@rys-fe/vite-plugin-theme/es/client": ["build/vite/plugin/theme-plugin/client/client.ts"],
|
|
"@rys-fe/vite-plugin-theme/es/colorUtils": ["build/vite/plugin/theme-plugin/client/colorUtils.ts"],
|
|
"@rys-fe/vite-plugin-theme": ["build/vite/plugin/theme-plugin/index.ts"],
|
|
"/@/*": ["src/*"],
|
|
"/#/*": ["types/*"],
|
|
"@/*": ["src/*"],
|
|
"#/*": ["types/*"],
|
|
"~icons/*": ["node_modules/unplugin-icons/types/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"tests/**/*.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"types/**/*.d.ts",
|
|
"types/**/*.ts",
|
|
"build/**/*.ts",
|
|
"build/**/*.d.ts",
|
|
"mock/**/*.ts",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
|
|
}
|