Set default line endings to "lf"

This commit is contained in:
Gustav Tonér
2022-03-19 20:21:54 +01:00
committed by GitHub
parent 88a7452ac5
commit 904f020e53

View File

@ -6,7 +6,8 @@
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"newLine": "lf" /* Use Linux line endings for outputted files to avoid issues with developing on Windows and running the check-dist workflow on ubuntu-latest */
},
"exclude": ["node_modules", "**/*.test.ts"]
}