diff options
| author | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-04-18 16:43:31 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-04-18 16:45:06 +0300 |
| commit | 8d26eb5b5e6b0bac4298ca0b2946193a841eade5 (patch) | |
| tree | ba3ba3b996ebb71caba7afbd43d1736a2c55bb6a /tsconfig.json | |
Initial commit
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8cf50d2 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": { + "allowJs": true, + "allowSyntheticDefaultImports": true, + "lib": [ + "dom", + "es2017" + ], + "rootDir": "src", + "outDir": "build", + "module": "commonjs", + "moduleResolution": "node", + "noUnusedLocals": true, + "noUnusedParameters": true, + "preserveConstEnums": true, + "removeComments": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "target": "esnext", + "forceConsistentCasingInFileNames": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "isolatedModules": true + }, + "exclude": [ + "node_modules" + ], + "include": [ + "src/", + "**/*.ts", + ] +}
\ No newline at end of file |
