mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
21 lines
520 B
JSON
21 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist/",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es5"
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "_jest"]
|
|
}
|