1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/tsconfig.json
Peter Bengtsson ef86766161 TypeScript to start server (#49800)
Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
2024-03-28 18:18:57 +00:00

37 lines
694 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitThis": false,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"noEmit": true,
"allowSyntheticDefaultImports": true,
"incremental": true,
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": [
"node_modules"
],
"include": [
"*.d.ts",
"**/*.ts",
"**/*.tsx"
]
}