mirror of
https://github.com/ryanccn/attic-action.git
synced 2024-11-19 22:16:35 +00:00
16 lines
386 B
JSON
16 lines
386 B
JSON
{
|
|
"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/*"]
|
|
}
|