yuyutaotao c288baa448
feat: make playground working in the browser (#135)
---------

Co-authored-by: zhouxiao.shaw <zhouxiao.shaw@bytedance.com>
2024-10-28 11:04:40 +08:00

25 lines
594 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"moduleResolution": "node",
"paths": {
"@/*": ["./src/*"]
},
"target": "es6",
"resolveJsonModule": true,
"rootDir": "./",
"skipLibCheck": true,
"strict": true,
"module": "ESNext"
},
"exclude": ["node_modules"],
"include": ["src", "tests", "./playwright.config.ts", "./vitest.config"]
}