pokerogue/tsconfig.json

27 lines
558 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",
}
}