Reconfigure linters for ESM

This commit is contained in:
Nick Alteen
2024-11-15 11:38:36 -05:00
parent 7c73dd15ca
commit d6b1edd724
14 changed files with 158 additions and 139 deletions

View File

@ -1,19 +1,11 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"rootDir": "./src",
"moduleResolution": "NodeNext",
"baseUrl": "./",
"sourceMap": true,
"outDir": "./dist",
"noImplicitAny": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"newLine": "lf"
"outDir": "./dist"
},
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
"include": ["src"]
}