aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/typescript/typescript.qbs
blob: 8407d1203b2f165c0351ece85ea3889ecf46fdeb (plain)
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
import qbs

Project {
    NodeJSApplication {
        Depends { name: "typescript" }
        Depends { name: "lib" }

        typescript.warningLevel: ["pedantic"]
        typescript.generateDeclarations: true
        typescript.moduleLoader: "commonjs"
        nodejs.applicationFile: "main.ts"

        name: "animals"

        files: [
            "animals.ts",
            "extra.js",
            "main.ts"
        ]
    }

    Product {
        Depends { name: "typescript" }

        typescript.generateDeclarations: true
        typescript.moduleLoader: "commonjs"

        name: "lib"

        files: [
            "foo.ts"
        ]
    }
}