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