diff options
author | Sebastian <sebasjm@gmail.com> | 2022-12-06 09:21:17 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2022-12-06 09:21:17 -0300 |
commit | e382b022030db96b8282337b304ec5e599a5f405 (patch) | |
tree | 6ba9afb72a1b3e5ce35f37a987d74286b0e45c92 /packages/web-util/tsconfig.json | |
parent | 219e48f35196e54361dc17d6ca7de6e095c46eeb (diff) |
web-util: utils for developing webapps
Diffstat (limited to 'packages/web-util/tsconfig.json')
-rw-r--r-- | packages/web-util/tsconfig.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/web-util/tsconfig.json b/packages/web-util/tsconfig.json new file mode 100644 index 000000000..aede0a0ac --- /dev/null +++ b/packages/web-util/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "composite": true, + "target": "ES6", + "module": "ESNext", + "jsx": "react", + "jsxFactory": "h", + "jsxFragmentFactory": "Fragment", + "moduleResolution": "Node", + "sourceMap": true, + "lib": [ + "es6" + ], + "outDir": "lib", + "preserveSymlinks": true, + "skipLibCheck": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "strict": true, + "strictPropertyInitialization": false, + "noImplicitAny": true, + "noImplicitThis": true, + "incremental": true, + "esModuleInterop": true, + "importHelpers": true, + "rootDir": "./src", + "typeRoots": [ + "./node_modules/@types" + ] + }, + "include": [ + "src/**/*" + ] +}
\ No newline at end of file |