scriptcat-mv3/tsconfig.json
王一之 c2219db73e
Some checks failed
build / Build (push) Failing after 7s
test / Run tests (push) Failing after 10s
添加测试
2025-03-18 18:05:13 +08:00

43 lines
764 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": [
"DOM",
"ES2020",
"WebWorker"
],
"module": "ESNext",
"jsx": "react-jsx",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"isolatedModules": true,
"resolveJsonModule": true,
"moduleResolution": "bundler",
"experimentalDecorators": true,
"useDefineForClassFields": true,
"allowImportingTsExtensions": true,
"baseUrl": ".",
"paths": {
"@App/*": [
"src/*"
],
"@Packages/*": [
"packages/*"
],
"@Tests/*": [
"tests/*"
]
},
},
"include": [
"src",
"packages",
"tests"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}