mirror of
https://github.com/LukeHagar/stats-action.git
synced 2025-12-06 04:21:26 +00:00
27 lines
655 B
JSON
27 lines
655 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "./build",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@@/*": ["./*"],
|
|
},
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["node"],
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["**/*.test.ts", "node_modules", "test/**", ".history/**"],
|
|
}
|