2019-04-30 11:11:25 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-06-01 15:06:00 +08:00
|
|
|
"outDir": "lib",
|
|
|
|
"rootDir": "./",
|
2019-04-30 11:11:25 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
2021-11-22 19:25:56 +08:00
|
|
|
"lib": ["ES6", "DOM", "ES2015", "ES2021"],
|
2019-04-30 11:11:25 +08:00
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
2019-06-11 14:58:28 +08:00
|
|
|
"esModuleInterop": true,
|
2019-06-10 22:53:21 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-09-24 13:20:27 +08:00
|
|
|
"sourceRoot": "",
|
2019-04-30 11:11:25 +08:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2022-06-01 15:06:00 +08:00
|
|
|
"skipLibCheck": true,
|
2023-03-20 20:09:13 +08:00
|
|
|
"downlevelIteration": true,
|
2022-11-01 15:02:46 +08:00
|
|
|
"composite": true,
|
2023-05-05 17:13:06 +08:00
|
|
|
"allowJs": true,
|
2022-11-02 11:02:06 +08:00
|
|
|
"baseUrl": "./",
|
2022-11-01 15:02:46 +08:00
|
|
|
"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"],
|
2023-03-20 20:09:13 +08:00
|
|
|
"amis": ["./packages/amis/src/index.tsx"],
|
2023-07-03 14:31:27 +08:00
|
|
|
"office-viewer": ["./packages/office-viewer/src/index.ts"],
|
2023-03-20 21:40:40 +08:00
|
|
|
"amis-editor-core": ["./packages/amis-editor-core/src/index.ts"],
|
|
|
|
"amis-editor": ["./packages/amis-editor/src/index.tsx"]
|
2023-03-20 20:09:13 +08:00
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
},
|
2023-04-17 17:41:46 +08:00
|
|
|
"watchOptions": {
|
|
|
|
"watchFile": "useFsEvents",
|
|
|
|
"watchDirectory": "useFsEvents",
|
|
|
|
"fallbackPolling": "dynamicPriority",
|
|
|
|
"synchronousWatchDirectory": true,
|
|
|
|
"excludeDirectories": ["**/node_modules"]
|
|
|
|
},
|
2022-06-01 15:06:00 +08:00
|
|
|
"types": ["typePatches"],
|
2022-11-02 22:45:12 +08:00
|
|
|
"references": [],
|
|
|
|
"include": [
|
2022-11-04 11:58:47 +08:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
"**/*.jsx",
|
2022-11-02 22:45:12 +08:00
|
|
|
"scripts/fis3plugin.ts",
|
|
|
|
"scripts/markdownPlugin.ts",
|
|
|
|
"scripts/mockApiPlugin.ts",
|
2023-05-05 17:13:06 +08:00
|
|
|
"packages/amis-ui/src/custom.d.ts",
|
|
|
|
"examples/polyfills/cloest.js",
|
|
|
|
"examples/polyfills/classList.js"
|
2022-11-02 22:45:12 +08:00
|
|
|
]
|
2020-05-27 19:31:50 +08:00
|
|
|
}
|