aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-03 13:00:48 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-03 13:01:05 +0530
commitffd2a62c3f7df94365980302fef3bc3376b48182 (patch)
tree270af6f16b4cc7f5da2afdba55c8bc9dbea5eca5 /tsconfig.json
parentaa481e42675fb7c4dcbbeec0ba1c61e1953b9596 (diff)
downloadwallet-core-ffd2a62c3f7df94365980302fef3bc3376b48182.tar.xz
modularize repo, use pnpm, improve typechecking
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/tsconfig.json b/tsconfig.json
deleted file mode 100644
index a6fa12f9b..000000000
--- a/tsconfig.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "compileOnSave": true,
- "compilerOptions": {
- "target": "ES6",
- "jsx": "react",
- "reactNamespace": "React",
- "module": "commonjs",
- "moduleResolution": "node",
- "sourceMap": true,
- "lib": [
- "es6",
- "dom"
- ],
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "strict": true,
- "strictPropertyInitialization": false,
- "outDir": "dist/node",
- "noImplicitAny": true,
- "noImplicitThis": true,
- "allowJs": true,
- "checkJs": true,
- "incremental": true,
- "esModuleInterop": true,
- "importHelpers": true
- },
- "include": ["src/**/*"]
-}