mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
e755bce438
**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.
19 lines
478 B
JSON
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
|
|
}
|
|
}
|