freeCodeCamp/tools/ui-components/tsconfig.json

21 lines
411 B
JSON

{
"compilerOptions": {
"module": "ES6",
"target": "ES6",
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"noEmit": true,
"typeRoots": ["../../node_modules/@types"]
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
},
"transpileOnly": true
}
}