mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
1ab8483933
* chore: update dependencies * feat: allow string arguments on directives resolves #325
27 lines
516 B
JSON
27 lines
516 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"target": "es2015",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"types": ["node", "jest"],
|
|
},
|
|
"include": [
|
|
"global.d.ts",
|
|
"packages/*/src",
|
|
"packages/*/test",
|
|
]
|
|
}
|