diff options
Diffstat (limited to 'users/Profpatsch/lyric/tsconfig.json')
-rw-r--r-- | users/Profpatsch/lyric/tsconfig.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/users/Profpatsch/lyric/tsconfig.json b/users/Profpatsch/lyric/tsconfig.json new file mode 100644 index 000000000000..f3c47a381e20 --- /dev/null +++ b/users/Profpatsch/lyric/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2017", + "module": "ESNext", + "outDir": "dist", + "strict": true, + "skipLibCheck": true, + "sourceMap": true, + "esModuleInterop": true + }, + "include": [ + "src/**/*.ts" + ], + "exclude": [ + "node_modules" + ] +} |