mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 03:03:06 -05:00
25 lines
578 B
JSON
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
|
|
}
|
|
}
|