-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 936 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"compilerOptions": {
"baseUrl": "src",
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["dom", "esnext"],
"strict": true,
"sourceMap": true,
"target": "esnext",
"types": ["vite/client"],
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"noEmit": true
},
// scripts/ is in here for one file: the раскладка probe. esbuild bundles it by stripping
// types WITHOUT checking them, so before this the only measuring instrument the engine has
// was the only code the repo's only gate did not cover — it would have rotted against a
// NestResult change and surfaced as a runtime `undefined` in the middle of a measurement.
"include": ["src", "scripts", "global.d.ts", "vite.config.ts"],
"exclude": ["node_modules", "dist"]
}