Updated tsconfig

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2020-02-06 16:53:01 +01:00
parent 36956b63d9
commit 8e1add81fc
No known key found for this signature in database
GPG Key ID: B143FF27EF555D16

View File

@ -8,7 +8,7 @@
], ],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": false, "strict": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"noEmit": true, "noEmit": true,
"esModuleInterop": true, "esModuleInterop": true,
@ -19,13 +19,12 @@
"jsx": "preserve" "jsx": "preserve"
}, },
"exclude": [ "exclude": [
"node_modules" "node_modules",
"out"
], ],
"include": [ "include": [
"next-env.d.ts", "next-env.d.ts",
"**/*.ts", "**/*.ts",
"**/*.tsx", "**/*.tsx"
"*.ts",
"sitemapGenerator.js"
] ]
} }