mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
This patch includes some necessary updates for `@stencil/vue-output-target@v0.9.0`: - we started to export Stencils helpers as runtime via `@stencil/vue-output-target/runtime` similar to what we did in React - this version requires some updates to Vue and TypeScript as well - adjustments related to that update
28 lines
756 B
JSON
28 lines
756 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["dom", "es2020"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"declarationDir": "dist/types",
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"target": "es2017"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["./__tests__/**", "node_modules", "setupTests.ts"],
|
|
"compileOnSave": false,
|
|
"buildOnSave": false
|
|
}
|