vitest/examples/vue-jsx/tsconfig.json
Vladimir f1b5474aa2
feat: allow plugins to specify if they should be transformed (#469)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-01-07 23:25:32 +08:00

20 lines
460 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom"],
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true,
"inlineSourceMap": true,
"jsx": "preserve"
},
"exclude": ["node_modules"]
}