forked from Mirror/attic-action
17 lines
386 B
JSON
17 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/*"]
|
||
|
}
|