summaryrefslogtreecommitdiffstats
path: root/apps/projects/src/tsconfig.json
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-06-01 22:20:31 +0200
committerivarlovlie <git@ivarlovlie.no>2022-06-01 22:20:31 +0200
commit9db0f70f75886ab1f97e231a3f9c16fcbbbe04bd (patch)
treeee4386cdffe27eaf0325b4617c7fafefbb9f7d51 /apps/projects/src/tsconfig.json
parent7058f55fe099d6b6dea50558f30a4dc8ee52dde8 (diff)
downloadgreatoffice-9db0f70f75886ab1f97e231a3f9c16fcbbbe04bd.tar.xz
greatoffice-9db0f70f75886ab1f97e231a3f9c16fcbbbe04bd.zip
refactor: Move projects-web to projects
Diffstat (limited to 'apps/projects/src/tsconfig.json')
-rw-r--r--apps/projects/src/tsconfig.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/apps/projects/src/tsconfig.json b/apps/projects/src/tsconfig.json
new file mode 100644
index 0000000..c60fce6
--- /dev/null
+++ b/apps/projects/src/tsconfig.json
@@ -0,0 +1,27 @@
+{
+ "include": [
+ "./**/*.d.ts",
+ "./**/*.ts",
+ "./**/*.js",
+ "./**/*.svelte"
+ ],
+ "exclude": [
+ "./node_modules"
+ ],
+ "compilerOptions": {
+ "target": "esnext",
+ "useDefineForClassFields": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "allowJs": true,
+ "checkJs": false,
+ "paths": {
+ "$app/*": [
+ "./app/*"
+ ],
+ "$shared/*": [
+ "../../web-shared/src/*"
+ ]
+ }
+ }
+}