-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
tsconfig.json
54 lines (53 loc) · 1.81 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"compilerOptions": {
"target": "es6",
"lib": ["ES2016", "DOM", "DOM.Iterable", "ES2015.Promise", "ES2019"],
"module": "System",
"moduleResolution": "node",
"removeComments": true,
"preserveConstEnums": true,
"experimentalDecorators": true,
"declaration": true,
"sourceMap": true,
"outDir": "./build/scripts/ts",
"rootDir": "./src/scripts",
"typeRoots": ["node_modules/@types", ".", "./src"],
"skipLibCheck": true,
"baseUrl": "./src/scripts",
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"allowJs": true,
"types": [
"jest",
"buefy",
"libx.js",
"node",
"vue",
"vue-router",
"systemjs",
"frame.libx.js"
],
"paths": {
"@scripts/ts/browserified/*": ["./ts/browserified/*"],
"@proj/libs/src": ["@proj/libs/build"],
"/frame/scripts/ts/browserified/frame.js": [
"../../node_modules/frame.libx.js/build-web/scripts/ts/browserified/frame.js"
],
"/frame/scripts/ts/browserified/frame-libs.js": ["../../node_modules/frame.libx.js/build-web/scripts/ts/browserified/frame-libs"],
"/frame/scripts/ts/*": ["../../node_modules/frame.libx.js/build-web/scripts/ts//*"],
"frame.libx.js/build-web/*": ["build-web/frame/*"],
"/scripts/*": ["./*"],
"./*": ["./ts/*"]
}
},
"files": ["node_modules/frame.libx.js/src/web/src-web/scripts/ts/global.d.ts", "node_modules/frame.libx.js/src/web/src-web/scripts/ts/vue.d.ts"],
"include": ["./src/scripts/ts/**/*.d.ts", "./src/scripts/ts/**/*.ts", "./src/**/*.vue", "../libs/lib/**/*.ts"],
"exclude": ["node_modules/**/*", "./src/scripts/ts/browserified/**/*", "./src/scripts/standalone/**/*", "../libs/lib/**/*", "api/**/*"],
"vueCompilerOptions": {
"experimentalCompatMode": 2,
"experimentalTemplateCompilerOptions": {
"compatConfig": { "MODE": 2 } // optional
}
}
}