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

13 lines
196 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "esnext",
"target": "es2019",
2019-10-21 17:07:16 +02:00
"strict": true,
2019-10-26 19:29:00 +02:00
"rootDir": "./src/js/",
"outDir": "./build/js/"
},
2019-10-27 01:15:36 +02:00
"include": [
"src/js/**/*.ts"
]
}