mirror of
https://github.com/vitaliiromanenko/popcorn-md.git
synced 2026-07-22 07:45:25 +00:00
22 lines
595 B
JSON
22 lines
595 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2021",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["ES2021", "DOM"],
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/settings/language/Languages.json"]
|
|
}
|