Skip to content

Commit

Permalink
chore: open tsconfig.useDefineForClassFields
Browse files Browse the repository at this point in the history
  • Loading branch information
Aqours committed Nov 13, 2023
1 parent b02b188 commit a031f26
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions apps/vue-demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# README

## Issues

### Scoped style leads to error: TS7006: Parameter 'n' implicitly has an 'any' type

See

- https://github.com/vuejs/vue-loader/issues/1915
- https://github.com/vuejs/core/pull/9363
6 changes: 3 additions & 3 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "CommonJS",
"target": "ESNext"
"target": "ESNext",
"module": "CommonJS"
}
},
"compilerOptions": {
"outDir": ".ts-build",
"composite": true,
"declaration": true,
"declarationMap": true,
"pretty": true,
"strict": true,
"sourceMap": true,
"skipLibCheck": true,
"importHelpers": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"useDefineForClassFields": true,
"target": "ES2016",
"module": "ESNext",
"moduleResolution": "node"
Expand Down

0 comments on commit a031f26

Please sign in to comment.