Files
5chan/tsconfig.json
T

26 lines
540 B
JSON
Raw Normal View History

2024-02-27 17:58:08 +01:00
{
"compilerOptions": {
"target": "ES2015",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
2026-07-09 14:46:00 +07:00
"moduleResolution": "bundler",
2024-02-27 17:58:08 +01:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}