1
Fork 0
driftingnebula-com/tsconfig.json

21 lines
501 B
JSON

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"jsx": "react-jsx",
"lib": ["ES2022"],
"module": "ES2022",
"moduleDetection": "force",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"verbatimModuleSyntax": true
}
}