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": { "compilerOptions": {
"alwaysStrict": true,
"declaration": true, "declaration": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"downlevelIteration": true, "downlevelIteration": true,
"lib": ["dom", "es2017"],
"module": "esnext", "module": "esnext",
"moduleResolution": "node", "moduleResolution": "node",
"lib": ["dom", "es2017"], "noEmit": true,
"outDir": "./out/esm",
"skipLibCheck": true, "skipLibCheck": true,
"sourceMap": true, "sourceMap": true,
"target": "es6", "target": "es6",
"types": [] "types": []
}, }
"exclude": ["node_modules", "out", "lib", "test"]
} }