Merge pull request #80 from remcohaszing/tsconfig-fixes

Do some tsconfig cleanups
This commit is contained in:
Remco Haszing 2021-08-19 08:50:55 +02:00 committed by GitHub
commit bdfa1ef4e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,15 @@
{
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"lib": ["dom", "es2017"],
"outDir": "./out/esm",
"noEmit": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es6",
"types": []
},
"exclude": ["node_modules", "out", "lib", "test"]
}
}