2024-03-31 00:47:47 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "ES2020",
|
2024-06-13 22:44:23 +00:00
|
|
|
"moduleResolution": "bundler",
|
2024-03-31 00:47:47 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"strictNullChecks": false,
|
2024-04-29 03:15:12 +00:00
|
|
|
"sourceMap": false,
|
2024-03-31 01:17:59 +00:00
|
|
|
"strict": false,
|
2024-03-31 00:47:47 +00:00
|
|
|
"rootDir": "./src",
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
2024-06-13 22:44:23 +00:00
|
|
|
"#enums/*": ["./enums/*.ts"],
|
2024-03-31 00:47:47 +00:00
|
|
|
"#app/*": ["*.ts"],
|
2024-06-13 09:36:12 +00:00
|
|
|
"#app": ["."],
|
|
|
|
"#test/*": ["./test/*.ts"]
|
2024-03-31 00:47:47 +00:00
|
|
|
},
|
|
|
|
"outDir": "./build",
|
|
|
|
"noEmit": true
|
2024-05-31 01:05:38 +00:00
|
|
|
},
|
|
|
|
"typedocOptions": {
|
2024-06-17 21:05:33 +00:00
|
|
|
"entryPoints": ["./src"],
|
2024-05-31 01:05:38 +00:00
|
|
|
"entryPointStrategy": "expand",
|
2024-06-17 21:05:33 +00:00
|
|
|
"exclude": "**/*+.test.ts",
|
|
|
|
"out": "typedoc"
|
2024-06-16 04:26:37 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"vite.config.ts",
|
|
|
|
"vitest.config.ts"
|
|
|
|
]
|
2024-03-31 00:47:47 +00:00
|
|
|
}
|