aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.build.json
diff options
context:
space:
mode:
authorShinigami <[email protected]>2023-07-15 07:23:28 +0200
committerGitHub <[email protected]>2023-07-15 07:23:28 +0200
commit0708eb4efe9494ba64fe7029e6c0559aeb8d519c (patch)
treefa678de84ca993ab19bc132debae26ae1f6a0d89 /tsconfig.build.json
parentc6323f81339b2371305dd8be38a1946be5140683 (diff)
downloadfaker-0708eb4efe9494ba64fe7029e6c0559aeb8d519c.tar.xz
faker-0708eb4efe9494ba64fe7029e6c0559aeb8d519c.zip
infra: reduce tsconfig complexity (#2102)
Diffstat (limited to 'tsconfig.build.json')
-rw-r--r--tsconfig.build.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/tsconfig.build.json b/tsconfig.build.json
new file mode 100644
index 00000000..aa1bfb29
--- /dev/null
+++ b/tsconfig.build.json
@@ -0,0 +1,17 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "target": "ES2019",
+ "noEmit": false,
+ "emitDeclarationOnly": true,
+ "rootDir": "src",
+ "outDir": "dist/types",
+
+ // This negates what is set in the extended tsconfig.json
+ "noImplicitAny": true,
+ "skipLibCheck": false,
+ "allowSyntheticDefaultImports": false,
+ "resolveJsonModule": false
+ },
+ "include": ["src"]
+}