mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-01 18:03:58 -05:00
23 lines
480 B
JSON
23 lines
480 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"
|
|
},
|
|
"exclude": ["node_modules", "dist", "types"],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
},
|
|
"transpileOnly": true
|
|
}
|
|
}
|