Add project files for the server

This commit is contained in:
Manuel Thalmann 2022-12-14 08:24:32 +01:00
parent 52552e8fc2
commit fb8d516e96
No known key found for this signature in database
GPG key ID: 5FD9AD3CCDDBD27B
6 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,13 @@
const { join } = require("node:path");
module.exports = {
env: {
browser: true
},
parserOptions: {
project: [
join(__dirname, "app.jsconfig.json"),
join(__dirname, "eslint.jsconfig.json")
]
}
};

View file

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"composite": true
},
"include": [
"./src/**/*"
]
}

View file

@ -0,0 +1,6 @@
{
"extends": "./tsconfig.base.json",
"include": [
"./.eslintrc.cjs"
]
}

View file

View file

@ -0,0 +1,3 @@
{
"extends": "../../tsconfig.base.json"
}

View file

@ -0,0 +1,12 @@
{
"extends": "./tsconfig.base.json",
"references": [
{
"path": "./app.jsconfig.json"
},
{
"path": "./eslint.jsconfig.json"
}
],
"include": []
}