Skip to content

Commit

Permalink
chore: add tsconfig
Browse files Browse the repository at this point in the history
Signed-off-by: Crisciany Souza <[email protected]>
  • Loading branch information
Any97Cris committed Jul 24, 2024
1 parent ed3d1ab commit 8215588
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@vue/tsconfig": "^0.5.1",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"esbuild-loader": "^4.2.2",
"file-loader": "^6.2.0",
Expand Down
15 changes: 15 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["src/**/*.ts", "src/env.d.ts"],
"exclude": ["node_modules", "vendor"],
"compilerOptions": {
"outDir": "./js",
"allowJs": true,
"checkJs": false,
"allowImportingTsExtensions": true,
"lib": ["ESNext"],
},
"vueCompilerOptions": {
"target": 2.7,
}
}

0 comments on commit 8215588

Please sign in to comment.