6
mirror of https://github.com/AllSpiceIO/notes-kv.git synced 2025-03-17 07:14:52 +00:00
notes-kv/tsconfig.json
Shrikanth Upadhayaya 13ce75aa4d
Initialize with v0.1
2024-07-15 10:35:58 -04: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"]
}