63 lines
1.1 KiB
JSON
Executable File
63 lines
1.1 KiB
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"react",
|
|
"react-dom",
|
|
"vite/client"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"index.tsx",
|
|
"os/**/*.ts",
|
|
"os/**/*.tsx",
|
|
"apps/**/*.ts",
|
|
"apps/**/*.tsx",
|
|
"apps/**/*.d.ts",
|
|
"system/**/*.ts",
|
|
"system/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"decompiled",
|
|
"apks",
|
|
"runs",
|
|
"bench_env",
|
|
"auto_explore",
|
|
"ui_dumps",
|
|
"extracted_assets",
|
|
"all_dicts"
|
|
],
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" }
|
|
]
|
|
}
|