freeCodeCamp/client/tsconfig.json

17 lines
393 B
JSON

{
"include": ["./i18n/**/*", "./plugins/**/*","./src/**/*","./utils/**/*"],
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"moduleResolution": "node",
"allowJs": true,
"jsx": "react",
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmit": true,
"skipLibCheck": true
}
}