confoss/tsconfig.json

18 lines
381 B
JSON
Raw Permalink Normal View History

2024-10-12 13:00:37 -04:00
{
"compilerOptions": {
2024-10-24 23:09:04 -04:00
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"sourceMap": true,
"outDir": "./dist",
"removeComments": true,
"sourceRoot": "./src",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"skipLibCheck": true
2024-10-12 13:00:37 -04:00
}
}