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

18 lines
326 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-21 00:38:53 +02:00
"files": [
2019-10-26 19:29:00 +02:00
"src/js/commands.ts",
"src/js/extensions.d.ts",
"src/js/extensions.ts",
"src/js/fs.ts",
"src/js/shared.ts",
"src/js/terminal.ts"
]
}