mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-01 09:03:55 -05:00
27 lines
583 B
JSON
27 lines
583 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["WebWorker", "DOM", "DOM.Iterable", "es2023"],
|
|
"target": "ES2023",
|
|
"module": "es2020",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"i18n/**/*",
|
|
"plugins/**/*",
|
|
"src/**/*",
|
|
"utils/**/*",
|
|
"tools/**/*",
|
|
"config/**/*"
|
|
]
|
|
}
|