Skip to content

Commit

Permalink
nit #10516
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Jan 25, 2024
1 parent 38fd1cb commit 6aa29cf
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arches/install/arches-app-templates/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"noImplicitThis": true,
"noImplicitThis": false,
"strict": true,
"verbatimModuleSyntax": true,
"target": "ESNext",
Expand Down
2 changes: 1 addition & 1 deletion arches/install/arches-templates/project_name/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"noImplicitThis": true,
"noImplicitThis": false,
"strict": true,
"verbatimModuleSyntax": true,
"target": "ESNext",
Expand Down
29 changes: 29 additions & 0 deletions arches/install/arches-templates/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"noEmit": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"noImplicitThis": false,
"strict": true,
"verbatimModuleSyntax": true,
"target": "ESNext",
"useDefineForClassFields": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": "./{{ project_name }}/src/",
"paths": {
"@/*": [
"*.ts",
"*.vue",
],
},
},
"include": [
"**/*.ts",
"**/*.vue",
],
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"noImplicitThis": true,
"noImplicitThis": false,
"strict": true,
"verbatimModuleSyntax": true,
"target": "ESNext",
Expand Down

0 comments on commit 6aa29cf

Please sign in to comment.