I get error TS5023: Unknown compiler option 'allowNonTsExtensions' when trying to run tsc in 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 typescript@1.6.2 globally in npm .
Link to the project .
source share