2020-07-09 20:51:47 +08:00
|
|
|
{
|
|
|
|
"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",
|
2020-07-25 22:39:19 +08:00
|
|
|
"allowJs": true,
|
2020-07-09 20:51:47 +08:00
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2021-09-22 10:27:50 +08:00
|
|
|
"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": {
|
2024-02-05 22:21:26 +08:00
|
|
|
"@vue/babel-plugin-jsx": ["./packages/babel-plugin-jsx/src"]
|
2023-08-01 15:00:51 +08:00
|
|
|
},
|
2024-01-21 17:11:15 +08:00
|
|
|
"noEmit": true,
|
2024-02-05 22:21:26 +08:00
|
|
|
"customConditions": ["dev"]
|
|
|
|
}
|
2020-10-12 13:49:27 +08:00
|
|
|
}
|