Skip to content

Commit 64207e1

Browse files
author
Jannik
authored
Merge pull request #114 from Becklyn/ignore-typoscript-files
Ignore TYPO3 typoscript files
2 parents af6810a + 455a85b commit 64207e1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
* (bug) Compile every entry into a separate directory, to avoid issues with the clean plugin.
3737
* (bc) Not all npm packages are automatically transpiled anymore. You need to define which packages from `node_modules` to transpile via Babel by using `.compileNpmPackages(...)`.
3838
* (feature) Even if not recommended (use SCSS!), we now support compiling CSS via webpack (not as entry point though). The CSS will be injected into the head dynamically.
39+
* (improvement) TypeScript will now ignore TYPO3 (`*typo3*`) directories, to prevent issues due to file extension conflicts of TYPO3's typoscript `.ts` and TypeScript's `.ts`.
3940

4041

4142
8.1.0

configs/tsconfig.legacy.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
},
2222
"exclude": [
2323
"../node_modules",
24-
"vendor"
24+
"vendor",
25+
"*typo3*"
2526
]
2627
}

configs/tsconfig.modern.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
},
2323
"exclude": [
2424
"../node_modules",
25-
"vendor"
25+
"vendor",
26+
"*typo3*"
2627
]
2728
}

0 commit comments

Comments
 (0)