Profectus/tsconfig.json

49 lines
993 B
JSON
Raw Normal View History

{
"compilerOptions": {
2022-01-14 04:25:47 +00:00
"noErrorTruncation": true,
"target": "esnext",
"module": "esnext",
"strict": true,
"checkJs": false,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
2022-03-04 03:39:48 +00:00
"baseUrl": "src",
"types": [
2022-07-10 03:02:44 +00:00
"vite/client",
"node"
],
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
2022-07-10 03:02:44 +00:00
"src/**/*.vue"
],
"exclude": [
"node_modules"
2022-03-08 06:24:47 +00:00
],
"typedocOptions": {
"entryPoints": ["src"],
"entryPointStrategy": "expand",
"cleanOutputDir": true,
"name": "Profectus",
"includeVersion": true,
"categorizeByGroup": false,
"readme": "none",
"out": "../docs/api"
2022-03-08 06:24:47 +00:00
}
}