summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2025-01-28 21:29:22 +0200
committerAsko Nõmm <asko@nmm.ee>2025-01-28 21:29:22 +0200
commit95692cf5540f1c0777ec08464ad5cc2a420406d6 (patch)
tree2746ecd1664ae1679d019d2d697aa6a092782e76 /tsconfig.json
parent8a53d6c1870533c5020b00a509025293caa2637e (diff)
Improve docs, namings
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json16
1 files changed, 4 insertions, 12 deletions
diff --git a/tsconfig.json b/tsconfig.json
index a6ed0e4..21eeee6 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,15 +1,11 @@
{
- "include": [
- "src"
- ],
- "exclude": [
- "**/*.test.ts"
- ],
+ "include": ["src"],
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"moduleResolution": "nodenext",
"allowImportingTsExtensions": true,
+ "noEmit": true,
"declaration": true,
"skipLibCheck": true,
"rootDir": "src",
@@ -17,11 +13,7 @@
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
- "lib": [
- "esnext",
- ],
- "types": [
- "vitest/globals"
- ]
+ "lib": ["esnext"],
+ "types": ["vitest/globals"]
}
}