mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-06-10 01:24:08 +02:00
chore: use strict compilation mode
This commit is contained in:
+6
-2
@@ -3,14 +3,18 @@
|
||||
"transpileOnly": true
|
||||
},
|
||||
"compilerOptions": {
|
||||
"types": ["node"],
|
||||
"lib": ["es6"],
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"module": "CommonJS",
|
||||
"outDir": "build",
|
||||
"removeComments": true,
|
||||
"preserveConstEnums": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"sourceMap": false,
|
||||
"skipLibCheck": true
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"esModuleInterop": false
|
||||
},
|
||||
"include": ["src/**/*.ts", "index.ts", "cli.ts"],
|
||||
"exclude": ["node_modules", ".vscode"]
|
||||
|
||||
Reference in New Issue
Block a user