-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
tsconfig.json
58 lines (58 loc) · 1.7 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
55
56
57
58
{
"compilerOptions": {
"outDir": "lib",
"rootDir": "./",
"module": "commonjs",
"target": "es5",
"lib": ["ES6", "DOM", "ES2015", "ES2021"],
"jsx": "react",
"moduleResolution": "node",
"importHelpers": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceRoot": "",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"downlevelIteration": true,
"composite": true,
"allowJs": true,
"baseUrl": "./",
"paths": {
"amis-core": ["./packages/amis-core/src/index.tsx"],
"amis-formula": ["./packages/amis-formula/src/index.ts"],
"amis-ui": ["./packages/amis-ui/src/index.tsx"],
"amis": ["./packages/amis/src/index.tsx"],
"office-viewer": ["./packages/office-viewer/src/index.ts"],
"amis-editor-core": ["./packages/amis-editor-core/src/index.ts"],
"amis-editor": ["./packages/amis-editor/src/index.tsx"],
"amis-theme-editor-helper": [
"./packages/amis-theme-editor-helper/src/index.ts"
]
}
},
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"fallbackPolling": "dynamicPriority",
"synchronousWatchDirectory": true,
"excludeDirectories": ["**/node_modules"]
},
"types": ["typePatches"],
"references": [],
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.jsx",
"scripts/fis3plugin.ts",
"scripts/markdownPlugin.ts",
"scripts/mockApiPlugin.ts",
"packages/amis-ui/src/custom.d.ts",
"examples/polyfills/cloest.js",
"examples/polyfills/classList.js"
]
}