mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-07-03 10:33:24 +08:00
refactor: upgrade project setup (#646)
This commit is contained in:
@ -1,26 +1,22 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"sourceMap": true,
|
||||
"target": "es2015",
|
||||
"module": "commonjs",
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||||
"moduleResolution": "node",
|
||||
"allowJs": true,
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"experimentalDecorators": true,
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"removeComments": false,
|
||||
"jsx": "preserve",
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom"
|
||||
],
|
||||
"types": ["node", "jest"],
|
||||
"types": ["vitest/globals"],
|
||||
"skipLibCheck": true,
|
||||
"paths": {
|
||||
"@vue/babel-plugin-jsx": ["./packages/babel-plugin-jsx/src"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"global.d.ts",
|
||||
"packages/*/src",
|
||||
"packages/*/test",
|
||||
]
|
||||
"include": ["packages/*/src", "packages/*/test"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user