Skip to content

Commit e682bce

Browse files
chore: Add initial frontend tsconfig.json for TypeScript configuration, including compiler options and path aliases.
1 parent 12e1136 commit e682bce

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

frontend/tsconfig.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"allowJs": true,
2121
"jsx": "react-jsx",
2222
"baseUrl": "./",
23+
"outDir": "./dist/out-tsc",
2324
"paths": {
2425
"@app/*": ["src/app/*"],
2526
"@pages/*": ["src/pages/*"],
@@ -36,5 +37,16 @@
3637
},
3738
"angularCompilerOptions": {
3839
"disableTypeScriptVersionCheck": true
39-
}
40+
},
41+
"include": [
42+
"src/**/*.d.ts",
43+
"src/**/*.ts",
44+
"index.tsx"
45+
],
46+
"exclude": [
47+
"node_modules",
48+
"tmp",
49+
"dist",
50+
"**/*.spec.ts"
51+
]
4052
}

0 commit comments

Comments
 (0)