babel-plugin-jsx/tsconfig.json

23 lines
542 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
2023-06-22 12:14:02 +08:00
"target": "ESNext",
"module": "ESNext",
2023-06-26 15:53:57 +08:00
"lib": ["ES2015", "DOM", "DOM.Iterable"],
2024-01-21 17:25:13 +08:00
"moduleResolution": "bundler",
"allowJs": true,
"strict": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"jsx": "preserve",
2024-01-13 02:48:14 +08:00
"jsxImportSource": "vue",
2023-06-22 12:14:02 +08:00
"types": ["vitest/globals"],
"skipLibCheck": true,
"paths": {
"@vue/babel-plugin-jsx": ["./packages/babel-plugin-jsx/src"]
2023-08-01 15:00:51 +08:00
},
"noEmit": true,
"customConditions": ["dev"]
}
2020-10-12 13:49:27 +08:00
}