hblang-vscode/tsconfig.json

15 lines
260 B
JSON
Raw Normal View History

2024-09-28 09:34:34 -05:00
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"outDir": "./out",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/**/*.ts"
]
}