Compare commits
3 commits
6429f05860
...
02938810e0
Author | SHA1 | Date | |
---|---|---|---|
Manuel Thalmann | 02938810e0 | ||
Manuel Thalmann | fb8d516e96 | ||
Manuel Thalmann | 52552e8fc2 |
|
@ -1,5 +1,9 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"checkJs": true
|
||||
},
|
||||
"include": [
|
||||
"./.eslintrc.cjs"
|
||||
]
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"checkJs": true
|
||||
},
|
||||
"include": [
|
||||
"./.eslintrc.cjs"
|
||||
]
|
||||
|
|
13
packages/server/.eslintrc.cjs
Normal file
13
packages/server/.eslintrc.cjs
Normal 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")
|
||||
]
|
||||
}
|
||||
};
|
11
packages/server/app.jsconfig.json
Normal file
11
packages/server/app.jsconfig.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
"composite": true
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*"
|
||||
]
|
||||
}
|
10
packages/server/eslint.jsconfig.json
Normal file
10
packages/server/eslint.jsconfig.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"checkJs": true
|
||||
},
|
||||
"include": [
|
||||
"./.eslintrc.cjs"
|
||||
]
|
||||
}
|
0
packages/server/src/main.js
Normal file
0
packages/server/src/main.js
Normal file
3
packages/server/tsconfig.base.json
Normal file
3
packages/server/tsconfig.base.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": "../../tsconfig.base.json"
|
||||
}
|
12
packages/server/tsconfig.json
Normal file
12
packages/server/tsconfig.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"references": [
|
||||
{
|
||||
"path": "./app.jsconfig.json"
|
||||
},
|
||||
{
|
||||
"path": "./eslint.jsconfig.json"
|
||||
}
|
||||
],
|
||||
"include": []
|
||||
}
|
|
@ -1,6 +1,9 @@
|
|||
{
|
||||
"extends": "@manuth/tsconfig/recommended",
|
||||
"compilerOptions": {
|
||||
"module": "Node16"
|
||||
"module": "Node16",
|
||||
"lib": [
|
||||
"ES2022"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue