-
Notifications
You must be signed in to change notification settings - Fork 15
/
tsconfig.json
36 lines (36 loc) · 879 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"compilerOptions": {
"module": "commonjs",
"experimentalDecorators": true,
"target": "ES5"
},
"include": [ "contract/**/*" ],
"typhen": [
{
"exclude": [ "contract/internal" ],
"plugin": "./tools/typhen/typhen-api/index",
"pluginOptions": {
"templateName": "unity",
"includeUniRxFiles": true
},
"outDir": "client/Assets/Scripts"
},
{
"plugin": "./tools/typhen/typhen-api/index",
"pluginOptions": {
"templateName": "rails",
"targetModule": "Submarine",
"spec": true
},
"outDir": "server/api"
},
{
"plugin": "./tools/typhen/typhen-api/index",
"pluginOptions": {
"templateName": "go",
"importBasePath": "github.com/shiwano/submarine/server/battle/lib/typhenapi"
},
"outDir": "server/battle/lib"
}
]
}