fix file extension (#35825)

This commit is contained in:
Alexander T
2019-12-23 21:39:50 +02:00
committed by Daniel Rosenwasser
parent 6c413e0bbb
commit a4e794d872
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ namespace ts {
showTSConfigCorrectly("Default initialized TSConfig", ["--showConfig"]);
showTSConfigCorrectly("Show TSConfig with files options", ["--showConfig", "file0.st", "file1.ts", "file2.ts"]);
showTSConfigCorrectly("Show TSConfig with files options", ["--showConfig", "file0.ts", "file1.ts", "file2.ts"]);
showTSConfigCorrectly("Show TSConfig with boolean value compiler options", ["--showConfig", "--noUnusedLocals"]);

View File

@@ -1,7 +1,7 @@
{
"compilerOptions": {},
"files": [
"./file0.st",
"./file0.ts",
"./file1.ts",
"./file2.ts"
]