diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-09-28 19:09:16 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-09-28 19:09:16 +0800 |
commit | 2471e1034664c348cb9fa4646b306f48c44572ec (patch) | |
tree | deae8e9a3f911784eb611b91525b2030d114c08b /packages/instant/tsconfig.json | |
parent | a737cfa004ee1dc18be935f61fb9c289ed5623fd (diff) | |
download | dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.gz dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.bz2 dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.lz dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.xz dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.tar.zst dexon-sol-tools-2471e1034664c348cb9fa4646b306f48c44572ec.zip |
Have React setup with basic build working
Diffstat (limited to 'packages/instant/tsconfig.json')
-rw-r--r-- | packages/instant/tsconfig.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/instant/tsconfig.json b/packages/instant/tsconfig.json new file mode 100644 index 000000000..69d2520fa --- /dev/null +++ b/packages/instant/tsconfig.json @@ -0,0 +1,16 @@ +{ + "extends": "../../tsconfig", + "compilerOptions": { + "outDir": "lib", + "rootDir": ".", + "jsx": "react", + "allowSyntheticDefaultImports": true, + "noImplicitAny": true, + "module": "ESNext", + "moduleResolution": "node", + "lib": ["es2015"], + "target": "es5", + "sourceMap": true + }, + "include": ["./src/**/*", "./test/**/*"] +} |