Compare commits

..

No commits in common. "02938810e0096b4803108f6275a2fda0fa3bd320" and "6429f058606aa1f4e524099ac0239e95bd8dad35" have entirely different histories.

9 changed files with 1 additions and 61 deletions

View file

@ -1,9 +1,5 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true
},
"include": [
"./.eslintrc.cjs"
]

View file

@ -1,9 +1,5 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true
},
"include": [
"./.eslintrc.cjs"
]

View file

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

View file

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

View file

@ -1,10 +0,0 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true
},
"include": [
"./.eslintrc.cjs"
]
}

View file

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

View file

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

View file

@ -1,9 +1,6 @@
{
"extends": "@manuth/tsconfig/recommended",
"compilerOptions": {
"module": "Node16",
"lib": [
"ES2022"
]
"module": "Node16"
}
}