mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
34 lines
666 B
JSON
34 lines
666 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@emotion/react",
|
|
"lib": ["dom", "esnext"],
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"outDir": "build/",
|
|
"preserveWatchOutput": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": [
|
|
"node",
|
|
"react",
|
|
"react-dom",
|
|
"vite/client",
|
|
"vitest/globals",
|
|
"novnc__novnc"
|
|
],
|
|
"paths": {
|
|
"#/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*"],
|
|
"exclude": ["node_modules/"]
|
|
}
|