bootstrap/specs/nodejs/template/tsconfig.json

15 lines
364 B
JSON
Raw Normal View History

2023-12-01 22:52:24 +00:00
{
// Visit https://aka.ms/tsconfig to read more about this file.
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist"
},
"include": ["src"],
"$schema": "https://json.schemastore.org/tsconfig"
}