• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "compilerOptions": {
3        "target": "es2018",
4        "lib": ["ESNext", "ESNext.WeakRef", "DOM"],
5        "module": "CommonJS",
6        "rootDir": ".",
7        "baseUrl": ".",
8        "outDir": "./lib",
9        "moduleResolution": "node",
10        "composite": true,
11        "incremental": true,
12        "declarationMap": true,
13        "sourceMap": true,
14        "declaration": true,
15        "noEmitOnError": true,
16        "strict": true,
17        "skipLibCheck": true,
18        "removeComments": false,
19        "isolatedModules": true
20    },
21    "include": [
22        "./common/**/*.ts",
23        "./memo-plugins/**/*.ts",
24        "./ui-plugins/**/*.ts",
25        "./ui-syntax-plugins/**/*.ts",
26        "./interop-plugins/**/*.ts",
27        "./path.ts",
28        "./test/ut/**/*.ts",
29        "./test/utils/**/*.ts"
30    ],
31    "exclude": [
32        "./test/demo/",
33        "./test/local/"
34    ]
35}
36