mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
32 lines
678 B
JSON
32 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@emotion/react",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"outDir": "build/",
|
|
"preserveWatchOutput": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2020",
|
|
"types": [
|
|
"node",
|
|
"react",
|
|
"react-dom",
|
|
"vite/client",
|
|
"vitest/globals",
|
|
"novnc__novnc"
|
|
],
|
|
"baseUrl": "src/"
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules/"]
|
|
}
|