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

12 lines
182 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/",
2019-10-26 19:29:00 +02:00
"outDir": "./build/js/"
},
2019-10-27 01:15:36 +02:00
"include": [
2019-10-29 18:36:26 +01:00
"src/main/js/**/*.ts"
]
}