setup-hugo/tsconfig.json
Peter Kurfer 2fc1d51eb6
Some checks failed
Continuous Integration / TypeScript Tests (push) Failing after 38s
Continuous Integration / GitHub Actions Test (push) Failing after 7s
Check Transpiled JavaScript / Check dist/ (push) Successful in 1m29s
feat: initial version
2024-05-02 18:38:23 +02:00

18 lines
473 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"rootDir": "./src",
"moduleResolution": "Node",
"baseUrl": "./",
"sourceMap": true,
"outDir": "./dist",
"noImplicitAny": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"newLine": "lf"
},
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
}