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"],
|
2020-07-09 20:51:47 +08:00
|
|
|
"moduleResolution": "node",
|
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",
|
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,
|
|
|
|
"incremental": true
|
2020-07-09 20:51:47 +08:00
|
|
|
},
|
2023-06-22 12:14:02 +08:00
|
|
|
"include": ["packages/*/src", "packages/*/test"]
|
2020-10-12 13:49:27 +08:00
|
|
|
}
|