1
Fork 0
driftingnebula-com/tsconfig.json

21 lines
501 B
JSON
Raw Normal View History

2024-03-02 12:31:31 +00:00
{
"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
}
}