1
0
Fork 1
mirror of https://github.com/ryanccn/attic-action.git synced 2025-03-23 06:16:11 +00:00
attic-action/tsconfig.json

17 lines
362 B
JSON
Raw Normal View History

2023-07-18 22:17:42 +08:00
{
2023-07-19 02:51:10 +00:00
"compilerOptions": {
"strict": true,
"downlevelIteration": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"skipLibCheck": true,
"noEmit": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "**/node_modules/*"]
2023-07-18 22:17:42 +08:00
}