swc/.github/swc-ecosystem-ci/tsconfig.json
Donny/강동윤 e755bce438
chore: Implement Verify release with ecosystem (#9064)
**Description:**

This is a follow-up PR for https://github.com/swc-project/swc/pull/9062. This PR integrates swc-ecosystem-ci to publish pipeline. For faster debugging, I disabled the build process.
2024-06-17 08:58:52 +09:00

19 lines
478 B
JSON

{
"include": ["./**/*.ts", "tests/.*.ts"],
"exclude": ["**/node_modules/**", "**/workspace/**"],
"compilerOptions": {
"target": "esnext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"declaration": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
"allowSyntheticDefaultImports": true,
"lib": ["esnext"],
"sourceMap": true
}
}