diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-18 23:24:26 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-18 23:24:26 -0400 |
| commit | 144758141156d8d00bb67f45d48dd7e6bf34525b (patch) | |
| tree | f16d95be370b781185ac5c3de2829c5617d583b0 /tsconfig.json | |
| parent | e36e01917651ccfff64f948c36ee93d310071991 (diff) | |
Specify port to Rollup, tell `tsc` to allow importing `json` files
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json index 561adfa..bbb617e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,15 @@ { "extends": "@tsconfig/svelte/tsconfig.json", - "compilerOptions": {"strictNullChecks": true}, - "include": ["src/**/*"], - "exclude": ["node_modules/*", "__sapper__/*", "public/*"] + "compilerOptions": { + "strictNullChecks": true, + "resolveJsonModule": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules/*", + "__sapper__/*", + "public/*" + ] }
\ No newline at end of file |
