Files
freeCodeCamp/tools/ui-components/tsconfig.json
2023-10-12 15:01:41 +00:00

25 lines
578 B
JSON

{
"compilerOptions": {
"module": "ES6",
"target": "ES6",
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types",
// can be removed, when we move the components into its own repo.
"declarationMap": true
},
"exclude": ["node_modules", "dist", "types"],
"ts-node": {
"compilerOptions": {
"module": "commonjs"
},
"transpileOnly": true
}
}