forked from Mirror/attic-action
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/*"]
|
|
}
|