forked from tools/josh
1
0
Fork 0
josh/tsconfig.json

12 lines
181 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es2019",
2019-10-21 17:07:16 +02:00
"strict": true,
2019-10-29 18:36:26 +01:00
"rootDir": "./src/main/js/",
2020-05-03 20:52:28 +02:00
"outDir": "./dist/js/"
},
2019-10-27 01:15:36 +02:00
"include": [
2019-10-29 18:36:26 +01:00
"src/main/js/**/*.ts"
]
}