2024-03-31 00:47:47 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "ES2020",
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
"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": {
|
|
|
|
"#app/*": ["*.ts"],
|
|
|
|
"#app": ["."]
|
|
|
|
},
|
|
|
|
"outDir": "./build",
|
|
|
|
"noEmit": true
|
2024-05-31 01:05:38 +00:00
|
|
|
},
|
|
|
|
"typedocOptions": {
|
|
|
|
"entryPoints": ["src/"],
|
|
|
|
"entryPointStrategy": "expand",
|
|
|
|
"out": "typedoc",
|
|
|
|
}
|
2024-03-31 00:47:47 +00:00
|
|
|
}
|