2022-12-04 22:15:59 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-12-15 16:40:02 +01:00
|
|
|
"sourceMap": true,
|
2022-12-04 22:15:59 -05:00
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "dist",
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"jsx": "react",
|
2022-12-11 09:03:53 -05:00
|
|
|
"target": "ES2020",
|
|
|
|
"module": "ES2020",
|
2022-12-04 22:15:59 -05:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
"noEmit": false,
|
|
|
|
"strict": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"baseUrl": "./",
|
2022-12-11 09:03:53 -05:00
|
|
|
"lib": ["DOM", "es6", "ES2015", "ES2020"],
|
2022-12-04 22:15:59 -05:00
|
|
|
"paths": {
|
|
|
|
"@staticcms/boolean": ["./src/widgets/boolean"],
|
|
|
|
"@staticcms/boolean/*": ["./src/widgets/boolean/*"],
|
|
|
|
"@staticcms/code": ["./src/widgets/code"],
|
|
|
|
"@staticcms/code/*": ["./src/widgets/code/*"],
|
|
|
|
"@staticcms/colorstring": ["./src/widgets/colorstring"],
|
|
|
|
"@staticcms/colorstring/*": ["./src/widgets/colorstring/*"],
|
|
|
|
"@staticcms/datetime": ["./src/widgets/datetime"],
|
|
|
|
"@staticcms/datetime/*": ["./src/widgets/datetime/*"],
|
|
|
|
"@staticcms/file": ["./src/widgets/file"],
|
|
|
|
"@staticcms/file/*": ["./src/widgets/file/*"],
|
|
|
|
"@staticcms/image": ["./src/widgets/image"],
|
|
|
|
"@staticcms/image/*": ["./src/widgets/image/*"],
|
|
|
|
"@staticcms/list": ["./src/widgets/list"],
|
|
|
|
"@staticcms/list/*": ["./src/widgets/list/*"],
|
|
|
|
"@staticcms/map": ["./src/widgets/map"],
|
|
|
|
"@staticcms/map/*": ["./src/widgets/map/*"],
|
|
|
|
"@staticcms/markdown": ["./src/widgets/markdown"],
|
|
|
|
"@staticcms/markdown/*": ["./src/widgets/markdown/*"],
|
|
|
|
"@staticcms/number": ["./src/widgets/number"],
|
|
|
|
"@staticcms/number/*": ["./src/widgets/number/*"],
|
|
|
|
"@staticcms/object": ["./src/widgets/object"],
|
|
|
|
"@staticcms/object/*": ["./src/widgets/object/*"],
|
|
|
|
"@staticcms/relation": ["./src/widgets/relation"],
|
|
|
|
"@staticcms/relation/*": ["./src/widgets/relation/*"],
|
|
|
|
"@staticcms/select": ["./src/widgets/select"],
|
|
|
|
"@staticcms/select/*": ["./src/widgets/select/*"],
|
|
|
|
"@staticcms/string": ["./src/widgets/string"],
|
|
|
|
"@staticcms/string/*": ["./src/widgets/string/*"],
|
|
|
|
"@staticcms/text": ["./src/widgets/text"],
|
|
|
|
"@staticcms/text/*": ["./src/widgets/text/*"],
|
|
|
|
"@staticcms/test": ["./test"],
|
|
|
|
"@staticcms/test/*": ["./test/*"],
|
|
|
|
"@staticcms/core": ["./src"],
|
|
|
|
"@staticcms/core/*": ["./src/*"]
|
|
|
|
},
|
2024-01-03 15:14:09 -05:00
|
|
|
"types": ["@types/jest", "@testing-library/jest-dom"]
|
2022-12-04 22:15:59 -05:00
|
|
|
}
|
|
|
|
}
|