I am getting error TS5023: Unknown compiler option 'allowNonTsExtensions'
when trying to run tsc
on a project.
Here is my tsconfig.json
file.
{
"compilerOptions": {
"target": "ES5",
"allowNonTsExtensions": true,
"module": "commonjs",
"sourceMap": true,
"isolatedModules": true,
"noEmitOnError": false,
"rootDir": ".",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"compileOnSave": false
}
Using [email protected]
globally in npm
.
Link to the project being used.
The option is not defined for tsconfig.json
. You can check it in wiki or in the source code:
https://github.com/Microsoft/TypeScript/blob/master/src/compiler/commandLineParser.ts#L477 - parsing method
https://github.com/Microsoft/TypeScript/blob/master/src/compiler/commandLineParser.ts#L9 - the list of options
allowNonTsExtensions
is an option that is a part of compiler API that is internal.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With