And thats what happens when you do a crapload of work with *.ts in .eslintignore... :/

This commit is contained in:
iPromKnight
2024-02-07 19:58:29 +00:00
committed by iPromKnight
parent 189fdd466e
commit 9aba1c13b1
55 changed files with 1987 additions and 576 deletions

View File

@@ -1,23 +1,29 @@
{
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"outDir": "dist",
"pretty": true,
"target": "es2020",
"module": "es2020",
"allowJs": true,
"removeComments": true,
"rootDir": "./src",
"resolveJsonModule": true,
"typeRoots": [
"./node_modules/@types"
],
"sourceMap": true,
"target": "ES6",
"outDir": "dist",
"strict": true,
"lib": [
"es6"
],
"types": [
"node",
"reflect-metadata"
"es2020"
],
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true
}
"moduleResolution": "Node",
"skipLibCheck": true,
},
"include": [
"src/**/*"
],
"exclude": ["node_modules"],
}