typescript-template/tsconfig.json

17 lines
464 B
JSON
Raw Permalink Normal View History

2024-12-21 09:08:42 +00:00
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
],
"target": "es2022",
"lib": ["ES2016", "ES2021", "ES2022", "ESNext"],
"module": "commonjs",
"rootDir": "./src",
"resolveJsonModule": true,
"outDir": "./lib",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}