Files
setup-clang/tsconfig.json
Lucas Petrino 06249bf357
Some checks failed
Lint Codebase / Lint Codebase (push) Has been cancelled
Continuous Integration / GitHub Actions Test (push) Failing after 20s
Check Transpiled JavaScript / Check dist/ (push) Successful in 1m9s
Continuous Integration / TypeScript Tests (push) Successful in 1m17s
Initial Commit
2024-11-17 11:50:58 +13:00

20 lines
503 B
JSON

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