33 lines
630 B
JSON
33 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"strictNullChecks": false,
|
|
"sourceMap": false,
|
|
"strict": false,
|
|
"rootDir": "./src",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"#enums/*": ["./enums/*.ts"],
|
|
"#app/*": ["*.ts"],
|
|
"#app": ["."],
|
|
"#test/*": ["./test/*.ts"]
|
|
},
|
|
"outDir": "./build",
|
|
"noEmit": true
|
|
},
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/"],
|
|
"entryPointStrategy": "expand",
|
|
"out": "typedoc",
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"vite.config.ts",
|
|
"vitest.config.ts"
|
|
]
|
|
} |