Spaces:
Running
Running
File size: 467 Bytes
540cfa6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/lerobot/**/*", "src/cli/**/*"],
"exclude": [
"src/main.ts",
"src/counter.ts",
"src/style.css",
"src/vite-env.d.ts"
]
}
|