mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-02-17 14:49:27 +08:00
- Switched to pnpm - Updated to typescript 4.9.5 - JSX transforms switched to react-jsx - Use swc for typescript transforms - Remove deprecated dependencies - Cleanup unused types - Some ESM fixes - PostCSS config now lives in package.json - Bump support target TODO: - switch to vite or plain esbuild - jest to vitest / uvu - jquery to cash-dom - pure ESM (lodash-es, etc.) - drop prettier & husky (lint-staged is okay) - drop wasm cli & xterm.js - update bootstrap
21 lines
412 B
JSON
21 lines
412 B
JSON
{
|
|
"extends": "@gplane/tsconfig",
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./resources/assets/src/*"]
|
|
},
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"resources/assets/src",
|
|
"resources/assets/webpack.d.ts",
|
|
"tools",
|
|
"webpack.config.ts",
|
|
"postcss.config.ts"
|
|
]
|
|
}
|