I have created a project using create react app typescript. I have a few d.ts files where I have defined interfaces types and enums. When I run start script. It is not able to load the d.ts files.
following is my tsconfig file.
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"es2017"
],
"allowJs": true,
"skipLibCheck": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"pretty": true,
"preserveConstEnums": true,
"typeRoots": [
"./node_modules/@types",
"src/*"
]
},
"include": [
"src/*"
]
}
typeRoot points to src/* , where i have my d.ts files but none of the d.ts is loaded. and I get following error:
Type error: Cannot find name 'IAlarmsDetails'. TS2304
interface IAlarmProps {
alarm: IAlarmsDetails;
}
This is the declaration for IAlarmsDetails in one of Alarm.d.ts
declare type IAlarmsList = IAlarmsDetails[];
Please let me know what I'm missing here. I do not want to use eject option and write my own build config.
IAlarmsDetails
? – Behl